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/asset.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type asset = {
7
id?: string;
8
site_id?: string;
9
creator_id?: string;
10
name?: string;
11
state?: string;
12
content_type?: string;
13
url?: string;
14
key?: string;
15
visibility?: string;
16
size?: number;
17
created_at?: string;
18
updated_at?: string;
19
};
20
21