import { DocumentLineMT } from '../../../shared/entities/stock'; import * as IShared from '../../../shared/interface'; export type Entity = DocumentLineMT; export declare const Route = "document_line_mt"; export declare const UpperName = "DocumentLineMT"; export declare const LowerName: string; export interface IUpdateRequest { document_line_ids: string[]; mt_order_by?: string | null; mt_order_date?: Date | null; mt_execution_by?: string | null; mt_execution_date?: Date | null; mt_execution_when?: Date | null; mt_order_with_notification?: boolean; } export interface IRepository { update(data: IUpdateRequest): Promise; } export type IController = IShared.IEntityWithUserToken;