Skip to main content Link Search Menu Expand Document (external link)

Values overview

Type that is an alias for an array of Value’s (see Value.ts).


Table of contents


Constructors

fromKeyValueIterable

Builds a Values from an iterable non-primitive value returning a key/value iterator

Signature

export declare const fromKeyValueIterable: (
  stringifier: PPOption.Stringifier.Type
) => (nonPrimitive: PPValue.NonPrimitive) => Type

fromProperties

Builds a Values from the keys of a non-primitive value and its prototypes

Signature

export declare const fromProperties: (maxPrototypeDepth: number) => (nonPrimitive: PPValue.NonPrimitive) => Type

fromValueIterable

Builds a Values from an iterable non-primitive value returning a value iterator

Signature

export declare const fromValueIterable: (nonPrimitive: PPValue.NonPrimitive) => Type

Models

Type (interface)

Type of a Values

Signature

export interface Type extends ReadonlyArray<PPValue.All> {}