import { Entity } from '@loopback/repository'; import { UserWithRelations } from '../../data'; export declare class UserEndPointPermission extends Entity { id: number; endpointId: string; userId: number; permission: number; [prop: string]: any; constructor(data?: Partial); } export interface UserEndPointPermissionRelations { user?: UserWithRelations; } export declare type UserEndPointPermissionWithRelations = UserEndPointPermission & UserEndPointPermissionRelations;