common.d.ts 370 B

12345678
  1. import { Address4 } from './ipv4';
  2. import { Address6 } from './ipv6';
  3. export interface ReverseFormOptions {
  4. omitSuffix?: boolean;
  5. }
  6. export declare function isInSubnet(this: Address4 | Address6, address: Address4 | Address6): boolean;
  7. export declare function isCorrect(defaultBits: number): (this: Address4 | Address6) => boolean;
  8. //# sourceMappingURL=common.d.ts.map