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