lib/types: remove unused IWGProviderConfig type

This commit is contained in:
Yuri Tatishchev 2025-03-30 19:52:13 -07:00
parent c3e64c8b98
commit 1f7dded292
Signed by: CaZzzer
GPG Key ID: E0EBF441EA424369

View File

@ -1,17 +1,2 @@
import type { Address4, Address6 } from 'ip-address';
export type { Result } from './result';
export { ok, err } from './result';
export interface IWGProviderConfig {
ipv4?: {
startingAddr: Address4;
};
ipv6?: {
startingAddr: Address6;
clientPrefixSize: number;
}
endpoint: string;
dns: string;
addrMaxIndex: number;
}