Context interface from Joi library

interface Context {
    key?: string;
    label?: string;
    value?: any;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

key?: string
label?: string
value?: any