@stylable/core
Version:
CSS for Components
7 lines • 384 B
TypeScript
import postcss, { ProcessOptions, Root, parse as cssParse } from 'postcss';
export type CSSObject = object;
export declare function cssObjectToAst(cssObject: CSSObject, sourceFile?: string): postcss.Root;
export type CssParser = typeof safeParse;
export declare function safeParse(css: string, options?: ProcessOptions): Root;
export { cssParse };
//# sourceMappingURL=parser.d.ts.map