UNPKG

621 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Akveo. All Rights Reserved.
4 * Licensed under the MIT License. See License.txt in the project root for license information.
5 */
6import { NbComponentOrCustomStatus, NbComponentStatus } from '../components/component-status';
7export declare class NbStatusService {
8 readonly coreStatuses: NbComponentStatus[];
9 isCoreStatus(status: NbComponentOrCustomStatus): boolean;
10 isCustomStatus(status: NbComponentOrCustomStatus): boolean;
11 getStatusClass(status: NbComponentOrCustomStatus): string | undefined;
12 protected isValidStatusString(status: NbComponentOrCustomStatus): boolean;
13}