/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
declare enum gearSlot {
    NONE = 0,
    CHEST = 1,
    LEFT_HAND = 2,
    RIGHT_HAND = 4,
    TWO_HANDED = 6,
    PANTS = 8,
    BOOTS = 16,
    LEFT_GLOVE = 32,
    RIGHT_GLOVE = 64,
    HELMET = 128,
    BELT = 256,
    SKIRT = 512,
    TABARD = 1024,
    CAPE = 2048,
}
export default gearSlot;
