materialize-angular
Version:
Material UI Angular library
25 lines (24 loc) • 616 B
TypeScript
/**
* @license
* Copyright Workylab. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://raw.githubusercontent.com/workylab/materialize-angular/master/LICENSE
*/
export interface ButtonModel {
className: string;
disabled: boolean;
level: BUTTON_LEVELS;
rippleDuration: number;
type: BUTTON_TYPES;
}
export declare enum BUTTON_LEVELS {
TEXT = "text",
ACCENT = "accent",
OUTLINE = "outline"
}
export declare enum BUTTON_TYPES {
BUTTON = "button",
SUBMIT = "submit",
RESET = "reset"
}