UNPKG

@pigeon-posse/pkg-extended-scripts

Version:

Separate scripts from package.json

9 lines (7 loc) 265 B
type Config = { [key: string]: () => void | Promise<void>; }; declare const defineConfig: <C extends Config>(config: C) => C; declare const getConfig: (input?: string) => Promise<Config | undefined>; export { defineConfig, getConfig }; export type { Config };