// ets_tracing: off import "../Operator/index.js" export const _brand: unique symbol = Symbol() export interface Brand { readonly [_brand]: B } export type Branded = A & Brand /** * @ets_optimize identity */ export function makeBranded>( self: Omit ): T { // @ts-expect-error return self }