UNPKG

css-to-ts

Version:

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

3 lines (2 loc) 178 B
import { VarType } from "./contracts"; export declare function ConvertCssToTs(stringifiedCss: string, variableName: string, headerComment?: string, varType?: VarType): string;