zerobyte/app/server/utils/branded.ts
2026-04-22 21:14:37 +02:00

7 lines
208 B
TypeScript

declare const brand: unique symbol;
export type Branded<T, B> = T & { [brand]: B };
export type ShortId = Branded<string, "ShortId">;
export const asShortId = (value: string): ShortId => value as ShortId;