interface IToolbarItem {
    content: VChildren;
    id?: string;
    onClick?: ((e) => void);
    title?: string;
}

Properties

content: VChildren
id?: string
onClick?: ((e) => void)

Type declaration

    • (e): void
    • Parameters

      • e: Event

      Returns void

title?: string

Generated using TypeDoc