2023-04-21 14:57:54 +00:00
|
|
|
import { JSONHydrator } from './postcss.js'
|
|
|
|
|
2023-04-21 16:12:50 +00:00
|
|
|
interface FromJSON extends JSONHydrator {
|
|
|
|
default: FromJSON
|
|
|
|
}
|
2023-04-21 14:57:54 +00:00
|
|
|
|
2023-04-21 16:12:50 +00:00
|
|
|
declare const fromJSON: FromJSON
|
|
|
|
|
|
|
|
export = fromJSON
|