UNPKG

pmcf

Version:

Poor mans configuration management

15 lines (14 loc) 397 B
export class ServiceOwner extends Base { services: any[]; _applyExtends(owner: any): void; _traverse(...args: any[]): boolean; findServices(filter: any): Generator<any, void, unknown>; /** * * @param {string} name * @returns {Service|undefined} */ named(name: string): Service | undefined; } import { Base } from "pmcf"; import { Service } from "pmcf";