File tree 2 files changed +43
-3
lines changed
2 files changed +43
-3
lines changed Original file line number Diff line number Diff line change 1
1
import type { KeysOfUnion , ArrayElement , ObjectValue } from './internal' ;
2
+ import type { Opaque } from './opaque' ;
2
3
3
4
/**
4
5
Create a type from `ParameterType` and `InputType` and change keys exclusive to `InputType` to `never`.
@@ -53,5 +54,7 @@ export type Exact<ParameterType, InputType> =
53
54
ParameterType extends unknown [ ] ? Array < Exact < ArrayElement < ParameterType > , ArrayElement < InputType > > >
54
55
// In TypeScript, Array is a subtype of ReadonlyArray, so always test Array before ReadonlyArray.
55
56
: ParameterType extends readonly unknown [ ] ? ReadonlyArray < Exact < ArrayElement < ParameterType > , ArrayElement < InputType > > >
56
- : ParameterType extends object ? ExactObject < ParameterType , InputType >
57
- : ParameterType ;
57
+ // For Opaque types, internal details are hidden from public, so let's leave it as is.
58
+ : ParameterType extends Opaque < infer OpaqueType , infer OpaqueToken > ? ParameterType
59
+ : ParameterType extends object ? ExactObject < ParameterType , InputType >
60
+ : ParameterType ;
Original file line number Diff line number Diff line change 1
- import type { Exact } from '../index' ;
1
+ import type { Exact , Opaque } from '../index' ;
2
2
3
3
{ // Spec - string type
4
4
type Type = string ;
@@ -334,3 +334,40 @@ import type {Exact} from '../index';
334
334
fn ( input ) ;
335
335
}
336
336
}
337
+
338
+ // Spec - special test case for Opaque type
339
+ // @see https://github.com/sindresorhus/type-fest/issues/508
340
+ {
341
+ type SpecialName = Opaque < string , 'special name' > ;
342
+
343
+ type OnlyAcceptName = {
344
+ name : SpecialName ;
345
+ } ;
346
+
347
+ const onlyAcceptNameImproved = < T extends Exact < OnlyAcceptName , T > > ( arguments_ : T ) => arguments_ ;
348
+
349
+ onlyAcceptNameImproved ( {
350
+ // The error before the workaround:
351
+ // Error: Type 'SpecialName' is not assignable to type 'never'
352
+ name : 'name' as SpecialName ,
353
+ } ) ;
354
+ }
355
+
356
+ // Spec - special test case for Opaque type
357
+ // @see https://github.com/sindresorhus/type-fest/issues/508
358
+ {
359
+ // Test for number Opaque type
360
+ type SpecialName = Opaque < number , 'special name' > ;
361
+
362
+ type OnlyAcceptName = {
363
+ name : SpecialName ;
364
+ } ;
365
+
366
+ const fn = < T extends Exact < OnlyAcceptName , T > > ( arguments_ : T ) => arguments_ ;
367
+
368
+ fn ( {
369
+ // The error before the workaround:
370
+ // Error: Type 'SpecialName' is not assignable to type 'never'
371
+ name : 1 as SpecialName ,
372
+ } ) ;
373
+ }
You can’t perform that action at this time.
0 commit comments