UNPKG

exexcepturi

Version:

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

15 lines (14 loc) 319 B
export interface Options extends CSSToTsOptions { removeSource?: boolean; pattern: string; watch?: boolean; cwd?: string; delimitter?: string; } export interface CSSToTsOptions { rootDir: string; outDir: string; suffix?: string; prefix?: string; header?: string; }