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 const Service: ServiceOps = { Tag: T.Tag, Env: E.Env, Patch: P.Patch } export declare namespace Service { export type Tag = T.Tag export type Tags = E.Tags export type Env = E.Env export type Patch = P.Patch export type TagType> = T.Tag.TagType }