adminjs
Version:
Admin panel for apps written in node.js
25 lines (24 loc) • 454 B
TypeScript
/**
* Type representing the AdminJS.Router
* @memberof Router
* @alias RouterType
*/
export type RouterType = {
assets: Array<{
path: string;
src: string;
}>;
routes: Array<{
method: string;
path: string;
Controller: any;
action: string;
contentType?: string;
}>;
};
/**
* @load ./router.doc.md
* @namespace
*/
export declare const Router: RouterType;
export default Router;