File tree Expand file tree Collapse file tree 9 files changed +15
-3
lines changed
Expand file tree Collapse file tree 9 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ export * from './tagFilters';
8181export * from './taskStatus' ;
8282export * from './timeRange' ;
8383export * from './typoTolerance' ;
84+ export * from './typoToleranceEnum' ;
8485export * from './updatedRuleResponse' ;
8586export * from './userId' ;
8687export * from './clientMethodProps' ;
Original file line number Diff line number Diff line change 1+ import type { TypoToleranceEnum } from './typoToleranceEnum' ;
2+
13/**
24 * Controls whether typo tolerance is enabled and how it is applied.
35 */
4- export type TypoTolerance = 'false' | 'min' | 'strict' | 'true' ;
6+ export type TypoTolerance = TypoToleranceEnum | boolean ;
Original file line number Diff line number Diff line change 1+ export type TypoToleranceEnum = 'min' | 'strict' ;
Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ export * from './tagFilters';
122122export * from './taskStatus' ;
123123export * from './timeRange' ;
124124export * from './typoTolerance' ;
125+ export * from './typoToleranceEnum' ;
125126export * from './updateApiKeyResponse' ;
126127export * from './updatedAtResponse' ;
127128export * from './updatedAtWithObjectIdResponse' ;
Original file line number Diff line number Diff line change 1+ import type { TypoToleranceEnum } from './typoToleranceEnum' ;
2+
13/**
24 * Controls whether typo tolerance is enabled and how it is applied.
35 */
4- export type TypoTolerance = 'false' | 'min' | 'strict' | 'true' ;
6+ export type TypoTolerance = TypoToleranceEnum | boolean ;
Original file line number Diff line number Diff line change 1+ export type TypoToleranceEnum = 'min' | 'strict' ;
Original file line number Diff line number Diff line change @@ -38,4 +38,5 @@ export * from './tagFilters';
3838export * from './trendingModels' ;
3939export * from './trendingRequest' ;
4040export * from './typoTolerance' ;
41+ export * from './typoToleranceEnum' ;
4142export * from './clientMethodProps' ;
Original file line number Diff line number Diff line change 1+ import type { TypoToleranceEnum } from './typoToleranceEnum' ;
2+
13/**
24 * Controls whether typo tolerance is enabled and how it is applied.
35 */
4- export type TypoTolerance = 'false' | 'min' | 'strict' | 'true' ;
6+ export type TypoTolerance = TypoToleranceEnum | boolean ;
Original file line number Diff line number Diff line change 1+ export type TypoToleranceEnum = 'min' | 'strict' ;
You can’t perform that action at this time.
0 commit comments