``` ~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js ```
11 lines
852 B
JavaScript
11 lines
852 B
JavaScript
export const getClassAlwaysKnownSpells = (state) => state.serviceData.classAlwaysKnownSpells;
|
|
export const getClassAlwaysPreparedSpells = (state) => state.serviceData.classAlwaysPreparedSpells;
|
|
export const getDefinitionPool = (state) => state.serviceData.definitionPool;
|
|
export const getKnownInfusionsMappings = (state) => state.serviceData.knownInfusionsMappings;
|
|
export const getInfusionsMappings = (state) => state.serviceData.infusionsMappings;
|
|
export const getRuleDataPool = (state) => state.serviceData.ruleDataPool;
|
|
export const getVehicleComponentMappings = (state) => state.serviceData.vehicleComponentMappings;
|
|
export const getVehicleMappings = (state) => state.serviceData.vehicleMappings;
|
|
export const getPartyInfo = (state) => state.serviceData.partyInfo;
|
|
export const getCampaignSettings = (state) => state.serviceData.campaignSettings;
|