ParameterStructures
class ParameterStructures { }
private constructor();
private readonly kind;
toString(): string;
§Properties
§Methods
§Static Properties
§
auto: ParameterStructures
[src]The parameter structure is automatically inferred on the number of parameters and the parameter type in case of a single param.
§
byName: ParameterStructures
[src]Forces byName
parameter structure. This is only useful when having a single
parameter. The library will report errors if used with a different number of
parameters.
§
byPosition: ParameterStructures
[src]Forces byPosition
parameter structure. This is useful if you have a single
parameter which has a literal type.
§Static Methods
§
is(value: any): value is ParameterStructures
[src]