Skip to content

Commit

Permalink
Add missing exports for some of the TypeScript 4.1-only types (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
armedi committed Apr 13, 2021
1 parent 480492c commit 73e9aa7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ts41/index.d.ts
Expand Up @@ -3,10 +3,20 @@ export * from '../base';

// These are special types that require at least TypeScript 4.1.
export {CamelCase} from './camel-case';
export {CamelCasedProperties} from './camel-cased-properties';
export {CamelCasedPropertiesDeep} from './camel-cased-properties-deep';
export {KebabCase} from './kebab-case';
export {KebabCasedProperties} from './kebab-cased-properties';
export {KebabCasedPropertiesDeep} from './kebab-cased-properties-deep';
export {PascalCase} from './pascal-case';
export {PascalCasedProperties} from './pascal-cased-properties';
export {PascalCasedPropertiesDeep} from './pascal-cased-properties-deep';
export {SnakeCase} from './snake-case';
export {SnakeCasedProperties} from './snake-cased-properties';
export {SnakeCasedPropertiesDeep} from './snake-cased-properties-deep';
export {DelimiterCase} from './delimiter-case';
export {DelimiterCasedProperties} from './delimiter-cased-properties';
export {DelimiterCasedPropertiesDeep} from './delimiter-cased-properties-deep';
export {Split} from './split';
export {Trim} from './trim';
export {Get} from './get';
Expand Down

0 comments on commit 73e9aa7

Please sign in to comment.