/**
* An example class
* @namespace example
*/
class ExampleTS {
/**
* A static method
* @param a the first parameter
* @param b the second parameter
*/
public static staticMethod(a: string, b: number) {
//
}
/**
* Constructor
* @param a the first parameter
* @param b the second parameter
*/
public constructor(a: string, b: number) {
//
}
/**
* An instance method
* @param a the first parameter
* @param b the second parameter
* @return return value
*/
private instanceMethod(a: string, b: number): boolean {
return false;
}
}