Lifecycle Hooks
Overview
Available Hooks
canExport: (item: NormalizedItem) => booleanhooks: {
canExport: (item) => {
// Export only items with magic power attribute
return (item.modules?.expansion_magic_power || 0) > 0;
}
}Last updated