@dbs-portal/module-identity
Version:
Identity management module for user and role management
14 lines • 343 B
TypeScript
/**
* Role List Component
*/
import React from 'react';
import type { Role } from '../types';
interface RoleListProps {
roles: Role[];
loading?: boolean;
onEdit?: (role: Role) => void;
onDelete?: (role: Role) => void;
}
export declare const RoleList: React.FC<RoleListProps>;
export {};
//# sourceMappingURL=RoleList.d.ts.map