Type Alias GetItemHandlersOptions
Declaration
export type GetItemHandlersOptions = {
excludeGroupItems?: boolean;
flatGroupItems?: boolean;
onlyVisible?: boolean;
onlyUnlocked?: boolean;
onlyType?: ItemHandlerType | ItemHandlerType[];
whiteListFilter?: (handler: any) => boolean;
blackListFilter?: (handler: any) => boolean;
};