Files
zerobyte/app/server/utils/branded.ts
2026-04-22 22:04:46 +02:00

8 lines
201 B
TypeScript

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