@universis/common
Version:
Universis - common directives and services
53 lines (52 loc) • 1.14 kB
TypeScript
export declare interface ButtonType {
buttonText: string;
buttonClass: string;
buttonDisabled?: boolean;
}
export declare const ButtonTypes: {
ok: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
cancel: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
yes: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
no: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
abort: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
retry: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
ignore: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
previous: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
next: {
buttonText: string;
buttonClass: string;
buttonDisabled: boolean;
};
};