Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/publish/netlify/api/models/deployFiles.ts
6468 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type deployFiles = {
7
files?: any;
8
draft?: boolean;
9
async?: boolean;
10
functions?: any;
11
function_schedules?: Array<{
12
name?: string;
13
cron?: string;
14
}>;
15
branch?: string;
16
framework?: string;
17
};
18
19