UNPKG

nativescript

Version:

Command-line interface for building NativeScript projects

14 lines (12 loc) 288 B
export type AffixOptions = { prefix?: string; suffix?: string; dir?: string; }; /** * Declares wrapped functions of temp module */ export interface ITempService { mkdirSync(affixes: string | AffixOptions): Promise<string>; path(options: string | AffixOptions): Promise<string>; }