mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-22 05:58:41 -05:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { CssStylesheetAST } from '../type';
|
|
export declare const parse: (css: string, options?: {
|
|
source?: string;
|
|
silent?: boolean;
|
|
}) => CssStylesheetAST;
|
|
export default parse;
|