File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ export type MyNullable_t<a> = null | undefined | a;
21
21
export type MyNullableExtended_t < a > = null | undefined | "WhyNotAnotherOne" | a ;
22
22
23
23
// tslint:disable-next-line:interface-over-type-literal
24
- export type UntaggedWithBool_t < a > = string | number | boolean | string ;
24
+ export type UntaggedWithBool_t = string | number | boolean | string ;
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ module CustomTagNotInline = {
275
275
276
276
module UntaggedWithBool = {
277
277
@unboxed @genType
278
- type t < 'a > = String (string ) | Float (float ) | Bool (bool ) | Object ({name : string })
278
+ type t = String (string ) | Float (float ) | Bool (bool ) | Object ({name : string })
279
279
280
280
let classify = x =>
281
281
switch x {
You can’t perform that action at this time.
0 commit comments