Svelte <Inspect {value} />

ValueType

type ValueType = 
  | "string"
  | "number"
  | "bigint"
  | "boolean"
  | "symbol"
  | "undefined"
  | "object"
  | "function"
  | "asyncfunction"
  | "generatorfunction"
  | "asyncgeneratorfunction"
  | "regexp"
  | "date"
  | "class"
  | "error"
  | "array"
  | "null"
  | "set"
  | "map"
  | "url"
  | "urlsearchparams"
  | "promise"
  | "iterator"
  | "NaN"
  | "store"
  | string & {
};