Interface IssueOptions

Options used by shapes and built-in operations to create an issue.

See

Issue

interface IssueOptions {
    message?: null | string | number | bigint | boolean | symbol | object | MessageCallback;
    meta?: any;
}

Hierarchy (view full)

Properties

Properties

message?: null | string | number | bigint | boolean | symbol | object | MessageCallback

The custom issue message.

meta?: any

An arbitrary metadata that is added to an issue.