UNPKG

@ckeditor/ckeditor5-utils

Version:

Miscellaneous utilities used by CKEditor 5.

11 lines (10 loc) 436 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * Parses the provided license key and returns the decoded object, or null if the decoding was unsuccessful. * * @param licenseKey The license key to decode. */ export declare function decodeLicenseKey(licenseKey?: string): Record<string, any> | null;