UNPKG

@k8ts/instruments

Version:

A collection of utilities and core components for k8ts.

14 lines 564 B
import { Address4 } from "ip-address"; export type Ip4_String = `${number}.${number}.${number}.${number}`; export declare class Ip4<Text extends Ip4_String = Ip4_String> { readonly text: Text; readonly _addr4: Address4 | undefined; constructor(text: Text); } export type Subnet4_String = `${number}.${number}.${number}.${number}/${number}`; export declare class Subnet4<Text extends Subnet4_String = Subnet4_String> { readonly text: Text; readonly _addr4: Address4 | undefined; constructor(text: Text); } //# sourceMappingURL=index.d.ts.map