Urara-Blog/node_modules/.pnpm-store/v3/files/b1/81deb1e50a18fc616b7c40e9cf11fb159ea4df7eecd3dfe58e3886dcdcf4f83e852956014ce20ddf126ecca3d473854310be3dd2dbf6521fd2a9d1355eb7a0
2022-08-14 01:14:53 +08:00

9 lines
392 B
Text

// These are all the basic types that's compatible with all supported TypeScript versions.
export * from '../base';
// These are special types that require at least TypeScript 4.1.
export {CamelCase} from './camel-case';
export {KebabCase} from './kebab-case';
export {PascalCase} from './pascal-case';
export {SnakeCase} from './snake-case';
export {DelimiterCase} from './delimiter-case';