UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

19 lines (18 loc) 461 B
import { ToolbarItemComponent } from "./toolbar-item.component"; export declare enum ToolbarItemType { secondary = "secondary", primary = "primary" } export interface IToolbarGroupContent { items: ToolbarItemComponent[]; title?: string; } export interface IToolbarSelectionState { current: number; total: number; } export declare enum ToolbarItemDisplayStyle { action = "action", main = "main", destructive = "destructive" }