import { ServiceSchema } from "moleculer";
export interface EntityMicroService extends ServiceSchema {
    actions?: {
        add?: {} | Function;
        get?: {} | Function;
        [p: string]: any;
    };
}
