UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

13 lines (12 loc) 295 B
export type GetTSErrorFilesProps = { command?: string; root?: string; }; export type TsErrorFile = { file: string; line: number; column: number; code: string; message: string; }; export declare function getTSErrorFiles(options?: GetTSErrorFilesProps): TsErrorFile[];