You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
485 B

import { PublishOptions } from '../internal';
export interface PublishedProjectResult {
/**
* Project manifest URL
*/
url: string;
/**
* Project page URL
*/
projectPageUrl: string;
/**
* TODO: What is this?
*/
ids: string[];
/**
* TODO: What is this? Where does it come from?
*/
err?: string;
}
export declare function publishAsync(projectRoot: string, options?: PublishOptions): Promise<PublishedProjectResult>;