UNPKG

typeroo

Version:

🦘 Advanced TypeScript types collection

6 lines (5 loc) • 137 B
declare const opaqueStringBrand: unique symbol; export type OpaqueString<Type> = string & { [opaqueStringBrand]: Type; }; export {};