diff --git a/src/index.ts b/src/index.ts index a46fa16..e26c616 100644 --- a/src/index.ts +++ b/src/index.ts @@ -29,7 +29,7 @@ export interface StreamFileResponse { done: boolean; } -export type DnsProvider = (ipAddress: string) => Promise; +export type DnsProvider = (ipAddress: string, domain: string) => Promise; export type PluginFunction = (api: PluginAPI) => Promise;