import * as E from "@tsplus/stdlib/service/Env"; import * as P from "@tsplus/stdlib/service/Patch"; import * as T from "@tsplus/stdlib/service/Tag"; /** * @tsplus type Service.Ops */ export interface ServiceOps { readonly Tag: T.TagOps; readonly Env: E.EnvOps; readonly Patch: P.PatchOps; } export declare const Service: ServiceOps; export declare namespace Service { type Tag = T.Tag; type Tags = E.Tags; type Env = E.Env; type Patch = P.Patch; type TagType> = T.Tag.TagType; } //# sourceMappingURL=Service.d.ts.map