messages.d.ts 269 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 export declare enum WarningTypes { WARNING = "Warning", DEPRECATION = "DeprecationWarning" } export declare function warn(warning: Warning): void; export interface Warning { code: string; type: WarningTypes; message: string; warned?: boolean; }