UNPKG

216 BTypeScriptView Raw
1/**
2 * Converts valid file names to valid javascript symbols and does best effort to make them readable. Example: ds-token.test becomes DsTokenTest
3 */
4export declare function normalizeName(rawName: string): string;