@omnia/tooling-composers
Version:
Provide tooling to work with manifest things.
10 lines (9 loc) • 404 B
TypeScript
export interface IBlockingComposer {
/** Block a manifest.
E.g. Provide omnia service id and manifest id for the target manifest you want to block
*/
externalManifest: (omniaServiceId: string, manifestId: string) => IBlockingComposer;
}
export declare class BlockingComposer implements IBlockingComposer {
externalManifest: (omniaServiceId: string, manifestId: string) => this;
}