mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 02:09:30 +08:00
9 lines
392 B
Text
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';
|