UNPKG
builder-util-runtime
Version:
latest (9.7.0)
next (10.0.0-alpha.4)
10.0.0-alpha.4
10.0.0-alpha.3
10.0.0-alpha.2
10.0.0-alpha.1
10.0.0-alpha.0
9.7.0
9.6.3
9.6.2
9.6.1
9.6.0
9.5.1
9.5.0
9.4.0
9.3.3
9.3.2
9.3.1
9.3.0
9.3.0-alpha.0
9.2.10
9.2.9
9.2.8
9.2.7
9.2.6
9.2.5
9.2.5-alpha.4
9.2.5-alpha.3
9.2.5-alpha.2
9.2.5-alpha.1
9.2.5-alpha.0
9.2.4
9.2.3
9.2.2
9.2.1
9.2.0
9.2.0-alpha.3
9.2.0-alpha.2
9.1.2-alpha.1
9.1.2-alpha.0
9.1.1
9.1.0
9.0.3
9.0.2
9.0.1
9.0.0
9.0.0-alpha.0
8.9.2
8.9.1
8.9.0
8.8.1
8.8.0
8.7.10
8.7.9
8.7.8
8.7.7
8.7.6
8.7.5
8.7.4
8.7.3
8.7.2
8.7.1
8.7.0
8.6.2
8.6.1
8.6.0
8.5.0
8.4.0
8.3.0
8.2.5
8.2.4
8.2.3
8.2.2
8.2.1
8.2.0
8.1.1
8.1.0
8.0.2
8.0.1
8.0.0
7.1.0
7.0.0
6.1.0
6.0.0
5.0.0
4.4.1
4.4.0
4.3.0
4.2.2
4.2.1
4.2.0
4.1.0
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.5.0
3.4.1
3.4.0
3.3.1
3.3.0
3.2.0
3.1.0
3.0.0
2.5.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.1
2.0.0
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.0-semantic-release
github.com/electron-userland/electron-builder
electron-userland/electron-builder
builder-util-runtime
/
out
/
blockMapApi.d.ts
13 lines
(12 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
FileChunks
{
checksums
:
Array
<
string
>;
sizes
:
Array
<
number
>; }
export
interface
BlockMap
{
version
:
"1"
|
"2"
;
files
:
Array
<
BlockMapFile
>; }
export
interface
BlockMapFile
extends
FileChunks
{
name
:
string
;
offset
:
number
; }