@kezios/forest-express-decorator
Version:
🚀 Decorators for Express Forest Admin
9 lines (8 loc) • 308 B
TypeScript
import { Response, NextFunction } from 'express';
import { Request } from 'express';
declare class PermissionMiddlewareCreator {
private name;
constructor(collectionName: string);
smartAction(): (req: Request, res: Response, next: NextFunction) => void;
}
export { PermissionMiddlewareCreator };