@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
15 lines (14 loc) • 355 B
TypeScript
import { AlertType } from "./alert.model";
export interface TccSnackbarOptions {
message: string;
header?: string;
durationinseconds?: number;
snackType?: AlertType;
secondbuttoncaption?: string;
noButton?: boolean;
}
export declare enum TccSnackbarEventType {
Action = "action",
Close = "close",
Timeout = "timeout"
}