UNPKG

@rimbu/base

Version:

Utilities to implement Rimbu collections

10 lines (9 loc) 251 B
/** * Unique symbol used as a nominal token within the base package. * Can be employed for branding or sentinel values. */ export const Token = Symbol('Token'); /** * Type alias representing the Token symbol. */ export type Token = typeof Token;