UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

12 lines (8 loc) 272 B
// ets_tracing: off import "../../../Operator/index.js" export const VersionedTypeId = Symbol() export type VersionedTypeId = typeof VersionedTypeId export class Versioned<A> { readonly _typeId: VersionedTypeId = VersionedTypeId constructor(readonly value: A) {} }