react-native-app-starter
Version:
A React Native Template.
16 lines • 503 B
TypeScript
/**
* Validation utilities
*/
/**
* Validates if the directory name is valid
* @param directoryName - The directory name to validate
* @returns True if valid, false otherwise
*/
export declare const isValidDirectoryName: (directoryName: string) => boolean;
/**
* Generates a random string of specified length
* @param length - Length of the random string
* @returns Random string
*/
export declare const randomNameGenerator: (length: number) => string;
//# sourceMappingURL=validation.d.ts.map