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/serviceInstance.ts
6467 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type serviceInstance = {
7
id?: string;
8
url?: string;
9
config?: any;
10
external_attributes?: any;
11
service_slug?: string;
12
service_path?: string;
13
service_name?: string;
14
env?: any;
15
snippets?: Array<any>;
16
auth_url?: string;
17
created_at?: string;
18
updated_at?: string;
19
};
20
21