11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
|
import { IStyleOptions } from './IStyleOptions';
|
||
|
/**
|
||
|
* Sets the current RTL value.
|
||
|
*/
|
||
|
export declare function setRTL(isRTL: boolean): void;
|
||
|
/**
|
||
|
* Gets the current RTL value.
|
||
|
*/
|
||
|
export declare function getRTL(): boolean;
|
||
|
export declare function getStyleOptions(): IStyleOptions;
|