// SPDX-License-Identifier: MIT // solhint-disable private-vars-leading-underscore pragma solidity ^0.8.13; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "./v1-controller/mechanics/renting/IListingTermsAware.sol"; interface IListingConfigurator is IERC165, IListingTermsAware { /** * @dev Validates if a warper supports multiple interfaces at once. * @return an array of `bool` flags in order as the `interfaceIds` were passed. */ function __supportedInterfaces(bytes4[] memory interfaceIds) external view returns (bool[] memory); }