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/hook.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type hook = {
7
id?: string;
8
site_id?: string;
9
type?: string;
10
event?: string;
11
data?: any;
12
created_at?: string;
13
updated_at?: string;
14
disabled?: boolean;
15
};
16
17