Merge dynamic runtime types with static types. In the type-system resolves as any, in runtime as the correct type.
const stringType = {kind: ReflectionKind.string};type t = {a: InlineRuntimeType<typeof stringType>}const value = 34;type t = {a: InlineRuntimeType<typeof value>}
Generated using TypeDoc
Merge dynamic runtime types with static types. In the type-system resolves as any, in runtime as the correct type.