css.d.ts 145 B

123456
  1. declare const css: {
  2. parse(css: string): object;
  3. stringify(stylesheet: object, options?: { indent?: string }): string;
  4. };
  5. export = css;