@iexec/iapp
Version:
A CLI to guide you through the process of building an iExec iApp
11 lines (10 loc) • 416 B
TypeScript
import { TemplateName } from '../config/config.js';
export declare function initIAppWorkspace({ projectName, template, useArgs, useProtectedData, useInputFile, useRequesterSecret, useAppSecret, }: {
projectName: string;
template: TemplateName;
useArgs?: boolean;
useProtectedData?: boolean;
useInputFile?: boolean;
useRequesterSecret?: boolean;
useAppSecret?: boolean;
}): Promise<void>;