brs-js
Version:
Brickadia Save Read/Writing
16 lines • 450 B
TypeScript
import read from './read';
import write from './write';
import * as utils from './utils';
import * as constants from './constants';
import * as types from './types';
export * from './types';
declare const brs: {
read: typeof read;
write: typeof write;
utils: typeof utils;
constants: typeof constants;
types: typeof types;
};
export { read, write, utils, constants, types };
export default brs;
//# sourceMappingURL=index.d.ts.map