1 | export declare namespace CSSUtils {
|
2 | const CLASS_PREFIX = "ns-";
|
3 | const MODAL_ROOT_VIEW_CSS_CLASS = "ns-modal";
|
4 | const ROOT_VIEW_CSS_CLASS = "ns-root";
|
5 | function getSystemCssClasses(): string[];
|
6 | function pushToSystemCssClasses(value: string): number;
|
7 | function removeSystemCssClass(value: string): string;
|
8 | function getModalRootViewCssClass(): string;
|
9 | function getRootViewCssClasses(): string[];
|
10 | function pushToRootViewCssClasses(value: string): number;
|
11 | function removeFromRootViewCssClasses(value: string): string;
|
12 | }
|