mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
c340246ca0
* Progress commit * Update more types * Fix more types * Fix abi function types * Fix lib types * Fix rest of types * Address wbobeirne changes * Change origin and destination check
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
declare module 'idna-uts46' {
|
|
export interface Options {
|
|
transitional?: boolean;
|
|
useStd3ASCII?: boolean;
|
|
verifyDnsLength?: boolean;
|
|
}
|
|
|
|
export function toAscii(domain: string, options: Options): string;
|
|
export function toUnicode(domain: string, args: Options): string;
|
|
}
|