@qbcart/eshop-inventory-hooks
Version:
Types to hooks for querying inventory data from LocalDB.
15 lines (14 loc) • 560 B
TypeScript
/**
* @license
* Copyright (c) 2021 QBCart Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source repo.
*/
/**
* Hook for removing a request for the product modal.
* @param {string} id - Id of item that product modal showed which is the primary key of the original request.
* @return A function for removing a request for the product modal.
*/
declare const useRemoveProductModal: () => (id: string) => Promise<boolean>;
export default useRemoveProductModal;