TypeScript/tests/baselines/reference/parserClassDeclaration17.types
2015-04-15 16:44:20 -07:00

18 lines
347 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts ===
declare class Enumerator {
>Enumerator : Enumerator
public atEnd(): boolean;
>atEnd : () => boolean
public moveNext();
>moveNext : () => any
public item(): any;
>item : () => any
constructor (o: any);
>o : any
}