mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Now `@experimental` tags are banned; and `@publicApi` tags are required on exports. PR Close #26595
17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
/** @publicApi */
|
|
export declare type E = string;
|
|
/** @publicApi */
|
|
export interface D {
|
|
e: number;
|
|
}
|
|
/** @publicApi */
|
|
export declare var e: C;
|
|
/** @publicApi */
|
|
export declare class C {
|
|
e: number;
|
|
d: string;
|
|
}
|
|
/** @publicApi */
|
|
export declare function b(): boolean;
|
|
/** @publicApi */
|
|
export declare const a: string;
|