UNPKG

mili

Version:

Scaffolding with continuous control over the development of the project.

7 lines (6 loc) 207 B
import { Syncable } from './syncable'; interface LoaderOptions { [key: string]: any; } export type Exec<T = LoaderOptions, R = Record<string, any>> = (cwd: string, options: T) => Syncable<R>; export {};