@grouparoo/core
Version:
The Grouparoo Core
26 lines (25 loc) • 681 B
TypeScript
declare const namespace = "plugins";
declare const pluginManifestNamespace = "pluginManifest";
declare module "actionhero" {
interface ActionheroConfigInterface {
[namespace]: ReturnType<typeof DEFAULT[typeof namespace]>;
}
interface ActionheroConfigInterface {
[pluginManifestNamespace]: ReturnType<typeof DEFAULT[typeof pluginManifestNamespace]>;
}
}
export declare const DEFAULT: {
plugins: () => {
"ah-sequelize-plugin": {
path: string;
};
} & Record<string, {
path: string;
}> & Record<string, {
path: string;
}>;
pluginManifest: () => {
url: string;
};
};
export {};