mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
348 B
TypeScript
8 lines
348 B
TypeScript
// Type definitions for rtl-detect 1.0
|
|
// Project: https://github.com/shadiabuhilal/rtl-detect
|
|
// Definitions by: imprevo <https://github.com/imprevo>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function getLangDir(strLocale: string): 'ltr' | 'rtl';
|
|
export function isRtlLang(strLocale: string): boolean | undefined;
|