@qbcart/eshop-cart-hooks
Version:
Type to hooks for manipulating the shopping cart across the QBCart EShop ecosystem.
14 lines (13 loc) • 452 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 retrieving the next queued request for the remove item modal from LocalDB.
* @return The id of the item to be removed in the remove item modal.
*/
declare const useRemoveItemModal: () => string;
export default useRemoveItemModal;