UNPKG

the-moby-effect

Version:
62 lines 1.69 kB
/** * Id schemas. * * @since 1.0.0 */ import * as Schema from "effect/Schema"; /** * @since 1.0.0 * @category Id Schemas */ export const ConfigId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ConfigId")); /** * @since 1.0.0 * @category Id Schemas */ export const ContainerId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ContainerId")); /** * @since 1.0.0 * @category Id Schemas */ export const ExecId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ExecId")); /** * @since 1.0.0 * @category Id Schemas */ export const ImageId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ImageId")); /** * @since 1.0.0 * @category Id Schemas */ export const NetworkId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("NetworkId")); /** * @since 1.0.0 * @category Id Schemas */ export const NodeId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("NodeId")); /** * @since 1.0.0 * @category Id Schemas */ export const PluginId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("PluginId")); /** * @since 1.0.0 * @category Id Schemas */ export const SecretId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("SecretId")); /** * @since 1.0.0 * @category Id Schemas */ export const ServiceId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ServiceId")); /** * @since 1.0.0 * @category Id Schemas */ export const TaskId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("TaskId")); /** * @since 1.0.0 * @category Id Schemas */ export const VolumeId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("VolumeId")); //# sourceMappingURL=id.js.map