Skip to content

crelte / std / CloneableOrPrimitive

Type Alias: CloneableOrPrimitive

ts
type CloneableOrPrimitive = 
  | Cloneable
  | string
  | number
  | boolean
  | null
  | undefined;

A type that represents a value that can be cloned.