// eslint-disable-next-line @typescript-eslint/no-explicit-any
type AnyObject = { [P in number | string | symbol]: any };

export default AnyObject;
