chore: add reflected type information to the .js files in ./build

This commit is contained in:
Jos de Jong 2024-10-11 12:15:17 +02:00 committed by Glen Whitney
parent 239215c234
commit ad5fd99f53
3 changed files with 62 additions and 3 deletions

View file

@ -135,7 +135,7 @@ interface ImplementationBuilder<
Specs & {[K in NewKeys]: DepCheck<RD, Signatures>}
>
ship(): Implementations<Signatures, NeedKeys, NeedList, Specs>
ship(): Implementations<Signatures, NeedKeys, NeedList, Specs> & { reflectedType5: string }
}
// And a function that actually provides the builder interface:
@ -189,7 +189,7 @@ function impBuilder<
},
ship() {
return (sofar as
Implementations<Signatures, NeedKeys, NeedList, Specs>)
Implementations<Signatures, NeedKeys, NeedList, Specs> & { reflectedType5: string })
}
}
}