import type { TypedKind } from "./kind"; import type { Type } from "./type"; export function asKind>(type: U): U & TypedKind; export function asKind(type: Type): TypedKind; export function asKind(type: Type): TypedKind { return type as unknown as TypedKind; }