UNPKG

@runejs/common

Version:

Common logging, networking, compression, and other miscellaneous functionality for RuneJS.

7 lines (6 loc) 229 B
export declare enum FileEncryption { none = 0, xtea = 1 } export declare type EncryptionMethod = 'none' | 'xtea'; export declare const getEncryptionMethod: (encryption: FileEncryption | number) => EncryptionMethod;