next
Version:
The React Framework
19 lines (18 loc) • 655 B
TypeScript
export declare function startedDevelopmentServer(appUrl: string, bindAddr: string): void;
declare type AmpStatus = {
message: string;
line: number;
col: number;
specUrl: string | null;
code: string;
};
export declare type AmpPageStatus = {
[page: string]: {
errors: AmpStatus[];
warnings: AmpStatus[];
};
};
export declare function formatAmpMessages(amp: AmpPageStatus): string;
export declare function ampValidation(page: string, errors: AmpStatus[], warnings: AmpStatus[]): void;
export declare function watchCompilers(client: import('webpack').Compiler, server: import('webpack').Compiler): void;
export {};