10 lines
162 B
TypeScript
Raw Normal View History

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