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]?: Presentation | Lifecycle.Status;
    [value]?: unknown;
}

Constructors

Properties

Constructors

constructor: any

Properties

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