@mui/x-license-pro
Version:
MUI X License verification
12 lines (11 loc) • 418 B
TypeScript
import { LicenseStatus } from '../utils/licenseStatus';
import { LicenseScope } from '../utils/licenseScope';
export declare function generateReleaseInfo(releaseDate?: Date): string;
export declare function verifyLicense({ releaseInfo, licenseKey, acceptedScopes, }: {
releaseInfo: string;
licenseKey: string | undefined;
acceptedScopes: LicenseScope[];
}): {
status: LicenseStatus;
meta?: any;
};