mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-01-23 13:54:46 +01:00
10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
|
import { JSONHydrator } from './postcss.js'
|
||
|
|
||
|
interface FromJSON extends JSONHydrator {
|
||
|
default: FromJSON
|
||
|
}
|
||
|
|
||
|
declare const fromJSON: FromJSON
|
||
|
|
||
|
export = fromJSON
|