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/snippet.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type snippet = {
7
id?: number;
8
site_id?: string;
9
title?: string;
10
general?: string;
11
general_position?: string;
12
goal?: string;
13
goal_position?: string;
14
};
15
16