@mamoorali295/rbac
Version:
Complete RBAC (Role-Based Access Control) system for Node.js with Express middleware, NestJS integration, GraphQL support, MongoDB & PostgreSQL support, modern admin dashboard, TypeScript support, and dynamic permission management
13 lines (12 loc) • 359 B
TypeScript
import { Document } from "mongoose";
export interface IFeature extends Document {
name: string;
description: string;
createdAt?: Date;
updatedAt?: Date;
}
export declare const Feature: import("mongoose").Model<IFeature, {}, {}, {}, Document<unknown, {}, IFeature, {}> & IFeature & Required<{
_id: unknown;
}> & {
__v: number;
}, any>;