baseui
Version:
A React Component library implementing the Base design language
26 lines (25 loc) • 730 B
TypeScript
export declare const KIND: Readonly<{
readonly info: "info";
readonly positive: "positive";
readonly warning: "warning";
readonly negative: "negative";
}>;
export declare const TYPE: Readonly<{
readonly inline: "inline";
readonly toast: "toast";
}>;
export declare const PLACEMENT: Readonly<{
readonly topLeft: "topLeft";
readonly top: "top";
readonly topRight: "topRight";
readonly bottomRight: "bottomRight";
readonly bottom: "bottom";
readonly bottomLeft: "bottomLeft";
}>;
export declare const TOAST_ROLE: Readonly<{
readonly alert: "alert";
readonly alertdialog: "alertdialog";
readonly dialog: "dialog";
readonly status: "status";
readonly log: "log";
}>;