UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

13 lines (12 loc) 552 B
export declare namespace CSSUtils { const CLASS_PREFIX = "ns-"; const MODAL_ROOT_VIEW_CSS_CLASS = "ns-modal"; const ROOT_VIEW_CSS_CLASS = "ns-root"; function getSystemCssClasses(): string[]; function pushToSystemCssClasses(value: string): number; function removeSystemCssClass(value: string): string; function getModalRootViewCssClass(): string; function getRootViewCssClasses(): string[]; function pushToRootViewCssClasses(value: string): number; function removeFromRootViewCssClasses(value: string): string; }