1/* 2* options.ts 3* 4* Copyright (C) 2020-2022 Posit Software, PBC 5* 6*/ 7 8export interface PublishCommandOptions { 9 token?: string; 10 server?: string | null; 11 id?: string; 12 render?: boolean; 13 prompt?: boolean; 14 browser?: boolean; 15} 16 17