(...args: Parameters<Interface["install"]>)
| 257 | const { runPromise } = makeRuntime(Service, LayerNode.compile(node)) |
| 258 | |
| 259 | export async function install(...args: Parameters<Interface["install"]>) { |
| 260 | return runPromise((svc) => svc.install(...args)) |
| 261 | } |
| 262 | |
| 263 | export async function add(...args: Parameters<Interface["add"]>) { |
| 264 | return runPromise((svc) => svc.add(...args)) |
nothing calls this directly
no test coverage detected