summaryrefslogtreecommitdiff
path: root/js/src/Ice/FormatType.js
blob: 6706187c12709f18d550d31645b8fdc14b09f5e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

const Ice = require("../Ice/EnumBase").Ice;
Ice.FormatType = Ice.Slice.defineEnum(
    [
        ['DefaultFormat', 0],
        ['CompactFormat', 1],
        ['SlicedFormat', 2]
    ]);
module.exports.Ice = Ice;