UNPKG

@central-credit/engine

Version:

Engine to handle the Serasa requests

14 lines (13 loc) 350 B
import { Entity } from '@loopback/repository'; export declare class Field extends Entity { id: string; seq: number; size: number; value?: string; type?: string; description?: string; constructor(data?: Partial<Field>); } export interface FieldRelations { } export declare type FieldWithRelations = Field & FieldRelations;