strapi-plugin-app-version
Version:
This plugin displays the version in the Strapi settings
24 lines (23 loc) • 467 B
TypeScript
declare const routes: {
admin: {
type: string;
routes: {
method: string;
path: string;
handler: string;
config: {
policies: string[];
};
}[];
};
'content-api': {
type: string;
routes: {
method: string;
path: string;
handler: string;
config: {};
}[];
};
};
export default routes;