UNPKG

@foal/typeorm

Version:

FoalTS integration of TypeORM

13 lines (12 loc) 229 B
import { BaseEntity } from 'typeorm'; /** * Entity representing a permission. * * @export * @class Permission */ export declare class Permission extends BaseEntity { id: number; name: string; codeName: string; }