UNPKG

pl4y-data-library

Version:

This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.

7 lines (6 loc) 180 B
import { StockLocation } from "../../../enums/stock-location.enum"; export declare class TransferStockDto { quantity: number; from: StockLocation; to: StockLocation; }