UNPKG

@lefe-dev/lefe-verify-license

Version:
14 lines (13 loc) 334 B
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; }