theme-lib
Version:
This is a simple example Angular Library published to npm.
36 lines (35 loc) • 1.24 kB
TypeScript
export declare class NbSpinnerComponent {
static readonly SIZE_XXSMALL = "xxsmall";
static readonly SIZE_XSMALL = "xsmall";
static readonly SIZE_SMALL = "small";
static readonly SIZE_MEDIUM = "medium";
static readonly SIZE_LARGE = "large";
static readonly SIZE_XLARGE = "xlarge";
static readonly SIZE_XXLARGE = "xxlarge";
static readonly STATUS_ACTIVE = "active";
static readonly STATUS_DISABLED = "disabled";
static readonly STATUS_PRIMARY = "primary";
static readonly STATUS_INFO = "info";
static readonly STATUS_SUCCESS = "success";
static readonly STATUS_WARNING = "warning";
static readonly STATUS_DANGER = "danger";
size: string;
status: string;
message: string;
private setSize;
private setStatus;
readonly xxsmall: boolean;
readonly xsmall: boolean;
readonly small: boolean;
readonly medium: boolean;
readonly large: boolean;
readonly xlarge: boolean;
readonly xxlarge: boolean;
readonly active: boolean;
readonly disabled: boolean;
readonly primary: boolean;
readonly info: boolean;
readonly success: boolean;
readonly warning: boolean;
readonly danger: boolean;
}