css.d.ts 145 B

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