23 lines
206 B
TypeScript
23 lines
206 B
TypeScript
/** The awesome iface
|
|
|
|
1 // => 1
|
|
|
|
This is not indentend
|
|
*/
|
|
export interface B {
|
|
b: number
|
|
}
|
|
|
|
export class C {
|
|
/**
|
|
|
|
1 // => 1
|
|
much.to.test()
|
|
yes()
|
|
|
|
|
|
|
|
more stuff*/
|
|
static boo() { return 1 }
|
|
}
|
|
|