Loom Engine - v3.1.1
    Preparing search index...

    Interface StockItemSpec<T>

    interface StockItemSpec<T = Record<string, unknown>> {
        id: string;
        currentStock?: number;
        maxStock?: number;
        restockAmount?: number;
        restockIntervalMs?: number;
        basePrice?: number;
        payload?: T;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index

    Properties

    id: string
    currentStock?: number
    maxStock?: number
    restockAmount?: number
    restockIntervalMs?: number
    basePrice?: number
    payload?: T