10 lines
135 B
TypeScript
Raw Normal View History

2023-07-24 11:13:08 +08:00
import { Parser } from './postcss.js'
2023-09-06 09:51:55 +08:00
interface Parse extends Parser {
default: Parse
}
2023-07-24 11:13:08 +08:00
2023-09-06 09:51:55 +08:00
declare const parse: Parse
export = parse