UNPKG

530 BTypeScriptView Raw
1interface Options {
2 executable?: string
3 cwd?: string
4}
5
6export declare const resolveBin: (modName: string, options?: Options) => string
7export declare const fromRoot: (...p: string[]) => string
8export declare const hasFile: (...p: string[]) => boolean
9export declare const hasPkgProp: (props: any) => boolean
10export declare const isGdScripts: () => boolean
11export declare const hasTests: () => boolean
12export declare const logMessage: (messsage: string) => void
13export declare const logScriptMessage: (script: string) => void