Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/command/publish/options.ts
3562 views
1
/*
2
* options.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*
6
*/
7
8
export interface PublishCommandOptions {
9
token?: string;
10
server?: string | null;
11
id?: string;
12
render?: boolean;
13
prompt?: boolean;
14
browser?: boolean;
15
}
16
17