@openlearning/imscc-packager
Version:
Package JSON course structure into an IMSCC package
11 lines (10 loc) • 472 B
TypeScript
export declare const randomId: (prefix?: string) => string;
export declare function strippedUuid(): string;
export declare function isEscapedHtml(input: string): boolean;
export declare function getRandomNumberInRange(min: number, max: number): number;
/**
* Converts a string to kebab-case (lowercase and separated by hyphens).
* @param input The input string to format.
* @returns The formatted string.
*/
export declare function toKebabCase(input: string): string;