Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 604 Bytes

kibana-plugin-core-public.toastinputfields.md

File metadata and controls

21 lines (13 loc) · 604 Bytes

Home > kibana-plugin-core-public > ToastInputFields

ToastInputFields type

Allowed fields for ToastInput.

Signature:

export declare type ToastInputFields = Pick<EuiToast, Exclude<keyof EuiToast, 'id' | 'text' | 'title'>> & {
    title?: string | MountPoint;
    text?: string | MountPoint;
};

Remarks

id cannot be specified.