UNPKG

t7m

Version:

Transformer for Elysia and Hono

8 lines 254 B
/** * Type that only includes properties that are possibly undefined. * @template T The type to process. */ export type OnlyPossiblyUndefined<T> = { [P in keyof T as undefined extends T[P] ? P : never]: T[P]; }; //# sourceMappingURL=types.d.ts.map