mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
3 lines
93 B
TypeScript
3 lines
93 B
TypeScript
export type Refine<T extends { type: string }, Type extends string> = T & {
|
|
type: Type;
|
|
};
|