declare const brandKey: unique symbol; type OrderId = string & { readonly [brandKey]: "OrderId" }; const orderId = "ord-9" as OrderId; console.log(typeof orderId); console.log(JSON.stringify(orderId));