UNPKG

@planet-a/affinity-node

Version:
7 lines (6 loc) 137 B
declare const __brand: unique symbol; export type Brand<B> = { [__brand]: B; }; export type Branded<T, B> = T & Brand<B>; export {};