UNPKG

mobyo-interfaces

Version:
14 lines (13 loc) 574 B
import { IPayioChefConfig, IPayioChefConfigOperation, IPayioChefConfigPrinter, IPayioChefConfigScale, IPayioChefConfigTabs, IPayioChefConfigWebhook } from '../interfaces'; export declare class PayioChefConfigEntity implements IPayioChefConfig { createdAt: Date; id: string; name: string; operation: IPayioChefConfigOperation; printer: IPayioChefConfigPrinter | null; scale: IPayioChefConfigScale; tabs: IPayioChefConfigTabs[]; updatedAt: Date; webhook: IPayioChefConfigWebhook[]; constructor(data?: Partial<PayioChefConfigEntity>); }