ts-patch
Version:
Patch typescript to support custom transformers in tsconfig.json
36 lines (35 loc) • 948 B
TypeScript
export declare class TspError extends Error {
}
export declare class WrongTSVersion extends TspError {
name: string;
}
export declare class FileNotFound extends TspError {
name: string;
}
export declare class PackageError extends TspError {
name: string;
}
export declare class PatchError extends TspError {
name: string;
}
export declare class PersistenceError extends TspError {
name: string;
}
export declare class OptionsError extends TspError {
name: string;
}
export declare class NPMError extends TspError {
name: string;
}
export declare class RestoreError extends TspError {
filename: string;
constructor(filename: string, message: string);
}
export declare class BackupError extends TspError {
filename: string;
constructor(filename: string, message: string);
}
export declare class FileWriteError extends TspError {
filename: string;
constructor(filename: string, message?: string);
}