UNPKG

@central-credit/app

Version:

Application Central Credit

11 lines (10 loc) 352 B
import { Entity } from '@loopback/repository'; export declare class UserCredentials extends Entity { id: string; password: string; userId: string; constructor(data?: Partial<UserCredentials>); } export interface UserCredentialsRelations { } export declare type UserCredentialsWithRelations = UserCredentials & UserCredentialsRelations;