UNPKG

485 BTypeScriptView Raw
1import { PublishOptions } from '../internal';
2export interface PublishedProjectResult {
3 /**
4 * Project manifest URL
5 */
6 url: string;
7 /**
8 * Project page URL
9 */
10 projectPageUrl: string;
11 /**
12 * TODO: What is this?
13 */
14 ids: string[];
15 /**
16 * TODO: What is this? Where does it come from?
17 */
18 err?: string;
19}
20export declare function publishAsync(projectRoot: string, options?: PublishOptions): Promise<PublishedProjectResult>;