the-moby-effect
Version:
Moby/Docker API client built using effect-ts
24 lines • 812 B
TypeScript
import * as Schema from "effect/Schema";
declare const PluginDevice_base: Schema.Class<PluginDevice, {
Description: typeof Schema.String;
Name: typeof Schema.String;
Path: Schema.NullOr<typeof Schema.String>;
Settable: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
}, Schema.Struct.Encoded<{
Description: typeof Schema.String;
Name: typeof Schema.String;
Path: Schema.NullOr<typeof Schema.String>;
Settable: Schema.NullOr<Schema.Array$<typeof Schema.String>>;
}>, never, {
readonly Description: string;
} & {
readonly Name: string;
} & {
readonly Path: string | null;
} & {
readonly Settable: readonly string[] | null;
}, {}, {}>;
export declare class PluginDevice extends PluginDevice_base {
}
export {};
//# sourceMappingURL=PluginDevice.generated.d.ts.map