API/api.medcify.app/node_modules/@pm2/io/build/main/featureManager.d.ts
2022-09-26 11:41:44 +05:30

15 lines
378 B
TypeScript

import { IOConfig } from './pmx';
export declare function getObjectAtPath(context: Object, path: string): any;
export declare class FeatureManager {
private logger;
init(options: IOConfig): void;
get(name: string): Feature;
destroy(): void;
}
export declare class FeatureConfig {
}
export interface Feature {
init(config?: any): void;
destroy(): void;
}