import * as restify from "restify"; import { ProductionOrder } from "../../models/productionOrder"; export declare function getAll(req: restify.Request, res: restify.Response, next: restify.Next): void; export declare function getById(req: restify.Request, res: restify.Response, next: restify.Next): any; /** * Reads all the Production Orders from a data file * @returns An array of {@see ProductionOrder} */ export declare function _readDataFromFile(): ProductionOrder[];