DefinitelyTyped/types/rtl-detect/index.d.ts
2019-04-02 00:19:45 +07:00

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;