mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-17 17:48:06 +00:00
* type browser-lang * add Comment * update tsconfig * edit tsconfig * update tsconfig * change test name * update tsconfig * update tsconfig * solve dtslint * fix version * version
14 lines
391 B
TypeScript
14 lines
391 B
TypeScript
// Type definitions for browser-lang 0.1
|
|
// Project: https://github.com/InJaEE/DefinitelyTyped
|
|
// Definitions by: InJaEE <https://github.com/InJaEE>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export interface BrowserOption {
|
|
languages: string[];
|
|
fallback: string;
|
|
}
|
|
|
|
declare function browserLang(option?: BrowserOption): string;
|
|
|
|
export default browserLang;
|