angular-cn/tools/ts-api-guardian/test/fixtures/classes_and_interfaces_expected.d.ts
Alex Eagle 25faf808a5 build: copy ts-api-guardian sources (#22544)
This is an exact mirror of 750f651eca

PR Close #22544
2018-03-02 15:00:00 -08:00

16 lines
332 B
TypeScript

export declare class A {
field: string;
method(a: string): number;
}
export interface B {
field: A;
}
export declare class C {
propWithDefault: number;
protected protectedProp: number;
someProp: string;
constructor(someProp: string, propWithDefault: number, privateProp: any, protectedProp: number);
}