@baqhub/sdk
Version:
The official JavaScript SDK for the BAQ federated app platform.
10 lines (9 loc) • 362 B
TypeScript
declare function parseFileName(fileName: string): (string | undefined)[];
declare function isValidFileName(fileName: string): boolean;
declare function normalizeFileName(fileName: string): string | null;
export declare const FileName: {
parse: typeof parseFileName;
isValid: typeof isValidFileName;
normalize: typeof normalizeFileName;
};
export {};