@lefe-dev/lefe-verify-license
Version:
Verify lefe license
14 lines (13 loc) • 334 B
TypeScript
export type Organization = string;
export interface License {
key?: string;
}
export declare class LicenseInfo {
organization: Organization;
constructor({ organization }: {
organization: Organization;
});
getLicenseInfo(): any;
getLicenseKey(): License["key"];
setLicenseKey(key?: string): void;
}