ExampleTS

An example class

Parameters

NameTypeDescription
a the first parameter
b the second parameter
(defined in /examples/example.ts:20)
public constructor(a: string, b: number) {
    //
  }

Parameters

NameTypeDescription
a the first parameter
b the second parameter

Returns

NameTypeDescription
(Returns)return value
(defined in /examples/example.ts:30)
private instanceMethod(a: string, b: number): boolean {
    return false;
  }

Parameters

NameTypeDescription
a the first parameter
b the second parameter

Returns

(Nothing)
(defined in /examples/example.ts:11)
public static staticMethod(a: string, b: number) {
    //
  }
Fork me on GitHub