@becomes/cms-cloud-client
Version:
SDK for accessing BCMS Cloud API
13 lines (12 loc) • 374 B
TypeScript
/// <reference types="node" />
export interface ShimLicenseObject {
list: Array<{
buf: Buffer;
str: string;
}>;
}
export declare class ShimLicense {
static add(instanceId: string, license: string): Promise<ShimLicenseObject>;
static remove(instanceId: string): Promise<void>;
static get(instanceId: string): Promise<ShimLicenseObject>;
}