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/accessToken.ts
6467 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type accessToken = {
7
id?: string;
8
access_token?: string;
9
user_id?: string;
10
email?: string;
11
created_at?: string;
12
};
13
14