SomeGlobalFunction
function SomeGlobalFunction(a: number = 10, b: object = {foo: 123, bar: 456})
Some global function
Returns: string
PARAMETER | TYPE | OPTIONAL | DEFAULT | DESCRIPTION |
---|---|---|---|---|
a | number | ✔️ | 10 | Param A |
b | object | ✔️ | {foo: 123, bar: 456} | Param B |
b.foo | number | ✔️ | 123 | Foo |
b.bar | number | ✔️ | 456 | Bar |