UNPKG
@runejs/filestore
Version:
beta (1.0.0-beta.12)
latest (0.17.0)
rc (0.16.0-rc.2)
1.0.0-beta.12
1.0.0-beta.10
1.0.0-beta.9
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.6
1.0.0-beta.5
1.0.0-beta.3
1.0.0-beta.2
0.17.0
0.16.0
0.16.0-rc.2
0.16.0-rc.1
0.15.2
0.15.1
0.15.0
0.14.2
0.14.1
0.14.0
0.13.3
0.13.2
0.13.1
0.13.0
0.12.4
0.12.3
0.12.2
0.12.1
0.12.0
0.11.2
0.10.2
0.10.1
0.10.0
0.9.0
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.0
0.6.1
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
Tools for managing the RuneJS filestore.
github.com/runejs/filestore
runejs/filestore
@runejs/filestore
/
lib
/
filestore
/
data
/
filestore-loader.d.ts
8 lines
(7 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ByteBuffer
}
from
'@runejs/common'
;
export
interface
FilestoreChannels
{
dataChannel
:
ByteBuffer
;
indexChannels
:
ByteBuffer
[];
metaChannel
:
ByteBuffer
; }
export
declare
const
loadFilestore
:
(
dir
:
string
) =>
FilestoreChannels
;