UNPKG

exexcepturi

Version:

css-to-ts takes css file and outputs TypeScript file with an exported string containing content of your css file.

13 lines (12 loc) 427 B
export declare class CssToTsConverter { private tsDir; private tsFileName; private cssDir; private cssFileName; private varName; private header; private removeSource; constructor(tsDir: string, tsFileName: string, cssDir: string, cssFileName: string, varName: string, header?: string, removeSource?: boolean); Convert(): Promise<void>; private makeDirRecursively(dirPath); }