s3si.ts/src/ipc/types.ts

11 lines
175 B
TypeScript
Raw Normal View History

2023-03-04 08:10:30 -05:00
export type Command = {
type: "hello";
data: string;
};
export type ExtractType<T extends { type: string }, K extends T["type"]> =
Extract<
T,
{ type: K }
>;