* feat(pihole): add support for v6 * fix: add session-store to keep using same session for pi-hole requests * chore: address pull request feedback * fix: import issue * fix: other import errors
8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
import type { DnsHoleSummary } from "./dns-hole-summary-types";
|
|
|
|
export interface DnsHoleSummaryIntegration {
|
|
getSummaryAsync(): Promise<DnsHoleSummary>;
|
|
enableAsync(): Promise<void>;
|
|
disableAsync(duration?: number): Promise<void>;
|
|
}
|