9 lines
162 B
TypeScript
Executable file
9 lines
162 B
TypeScript
Executable file
import { JSONHydrator } from './postcss.js'
|
|
|
|
interface FromJSON extends JSONHydrator {
|
|
default: FromJSON
|
|
}
|
|
|
|
declare const fromJSON: FromJSON
|
|
|
|
export = fromJSON
|