Delete specified equip
export type RemoveEquipProps = { equipId: string; }
const success = await assetlayer.equips.removeEquip({ equipId: 'equipId' });
type ReturnType = boolean;
Last updated 1 year ago