Added a module definition file

This commit is contained in:
WolverinDEV 2019-10-25 21:32:40 +02:00
parent 54d0802ed7
commit 2e9a367f13
1 changed files with 4 additions and 0 deletions

4
native/dns/exports/exports.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module "teaclient_dns" {
export function resolve_cr(host: string, port: number, callback: (result: string | {host: string, port: number}) => any);
export function initialize();
}