3 lines
118 B
TypeScript
3 lines
118 B
TypeScript
import type { UnionLast } from "./unionLast";
|
|
export declare type UnionPop<UNION> = Exclude<UNION, UnionLast<UNION>>;
|