Spaces:
Sleeping
Sleeping
File size: 293 Bytes
a23aa7d | 1 2 3 4 5 6 7 8 9 | import { default as parseFn } from './parse';
import { default as stringifyFn } from './stringify';
export const parse = parseFn;
export const stringify = stringifyFn;
export * from './CssParseError';
export * from './CssPosition';
export * from './type';
export default { parse, stringify };
|