4 lines
194 B
TypeScript
Raw Normal View History

declare module "tc-native/dns" {
2019-10-26 01:51:40 +02:00
export function resolve_cr(host: string, port: number, callback: (result: string | {host: string, port: number}) => any);
export function initialize();
}