UNPKG

166 BTypeScriptView Raw
1export interface LintErrorInfo {
2 column: number;
3 line: number;
4 message: string;
5}
6export declare function validateEs5Code(code: string): LintErrorInfo[];