Logged values may implement this interface to customize presentation.

You can use the utility functions such as Diagnostic.dict to create Diagnostics from common value types.

interface Diagnostic {
    constructor: any;
    [presentation]?: Lifecycle.Status | Presentation;
    [value]?: unknown;
}

Constructors

Properties

Constructors

constructor: any

Properties

[presentation]?: Lifecycle.Status | Presentation
[value]?: unknown