1// deno-lint-ignore-file 2/* istanbul ignore file */ 3/* tslint:disable */ 4/* eslint-disable */ 5 6export 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