Made enums all constants

This commit is contained in:
Dolan
2017-06-08 02:28:00 +01:00
parent 29a0cd79eb
commit 2dc0287a6b
33 changed files with 62 additions and 62 deletions

View File

@@ -1,7 +1,7 @@
import { DiffBinaryFile } from './diff-binary-file';
export namespace DiffBinary {
enum DIFF_BINARY {
const enum DIFF_BINARY {
NONE = 0,
LITERAL = 1,
DELTA = 2