UNPKG

@foal/typeorm

Version:

FoalTS integration of TypeORM

15 lines (14 loc) 325 B
import { BaseEntity } from 'typeorm'; import { Permission } from './permission.entity'; /** * Entity representing a group. A group can have permissions. * * @export * @class Group */ export declare class Group extends BaseEntity { id: number; name: string; codeName: string; permissions: Permission[]; }