the-moby-effect
Version:
Moby/Docker API client built using effect-ts
41 lines • 1.44 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
declare const DefaultNetworkSettings_base: Schema.Class<DefaultNetworkSettings, {
EndpointID: typeof Schema.String;
Gateway: typeof Schema.String;
GlobalIPv6Address: typeof Schema.String;
GlobalIPv6PrefixLen: MobySchemas.Int64Schemas.$Int64;
IPAddress: typeof Schema.String;
IPPrefixLen: MobySchemas.Int64Schemas.$Int64;
IPv6Gateway: typeof Schema.String;
MacAddress: typeof Schema.String;
}, Schema.Struct.Encoded<{
EndpointID: typeof Schema.String;
Gateway: typeof Schema.String;
GlobalIPv6Address: typeof Schema.String;
GlobalIPv6PrefixLen: MobySchemas.Int64Schemas.$Int64;
IPAddress: typeof Schema.String;
IPPrefixLen: MobySchemas.Int64Schemas.$Int64;
IPv6Gateway: typeof Schema.String;
MacAddress: typeof Schema.String;
}>, never, {
readonly MacAddress: string;
} & {
readonly EndpointID: string;
} & {
readonly Gateway: string;
} & {
readonly IPPrefixLen: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly IPv6Gateway: string;
} & {
readonly GlobalIPv6Address: string;
} & {
readonly GlobalIPv6PrefixLen: MobySchemas.Int64Schemas.Int64Brand;
} & {
readonly IPAddress: string;
}, {}, {}>;
export declare class DefaultNetworkSettings extends DefaultNetworkSettings_base {
}
export {};
//# sourceMappingURL=DefaultNetworkSettings.generated.d.ts.map