import { BaseEntity, EntityManager } from 'typeorm'; import { NestAuthUser } from './user.entity'; import { NestAuthRole } from '../../role/entities/role.entity'; export declare class NestAuthPlatformAccess extends BaseEntity { id: string; userId: string; user: NestAuthUser; roles: NestAuthRole[]; isActive: boolean; createdAt: Date; updatedAt: Date; getPermissions(): Promise; getRoles(withPermissions?: boolean): Promise; assignRoles(roleIds: string | string[], manager?: EntityManager): Promise; } //# sourceMappingURL=platform-access.entity.d.ts.map