@nebular/theme
Version:
@nebular/theme
14 lines (13 loc) • 621 B
TypeScript
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { NbComponentOrCustomStatus, NbComponentStatus } from '../components/component-status';
export declare class NbStatusService {
readonly coreStatuses: NbComponentStatus[];
isCoreStatus(status: NbComponentOrCustomStatus): boolean;
isCustomStatus(status: NbComponentOrCustomStatus): boolean;
getStatusClass(status: NbComponentOrCustomStatus): string | undefined;
protected isValidStatusString(status: NbComponentOrCustomStatus): boolean;
}