roc/crates/compiler/checkmate/www/src/utils/refine.ts
2023-07-17 10:12:17 -05:00

3 lines
93 B
TypeScript

export type Refine<T extends { type: string }, Type extends string> = T & {
type: Type;
};