netlify
Version:
Netlify command line tool
23 lines • 595 B
TypeScript
import type { BaseOptionValues } from '../base-command.js';
export type DeployOptionValues = BaseOptionValues & {
alias?: string;
build: boolean;
branch?: string;
context?: string;
createSite?: string | boolean;
dir?: string;
draft: boolean;
functions?: string;
json: boolean;
message?: string;
open: boolean;
prod: boolean;
prodIfUnlocked: boolean;
site?: string;
skipFunctionsCache: boolean;
team?: string;
timeout?: number;
trigger?: boolean;
uploadSourceZip?: boolean;
};
//# sourceMappingURL=option_values.d.ts.map