-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtypes.js
80 lines (68 loc) · 2.45 KB
/
types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
/**
* Namespace for custom types.
* @namespace
*/
unpacker.types = {};
/** @typedef {string} */
unpacker.types.FileSystemId;
/** @typedef {number} */
unpacker.types.RequestId;
/** @typedef {number} */
unpacker.types.CompressorId;
/** @typedef {number} */
unpacker.types.EntryId;
/**
* @see
* https://developer.chrome.com/apps/fileSystemProvider#event-onUnmountRequested
* @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
* requestId: !unpacker.types.RequestId}>}
*/
unpacker.types.UnmountRequestedOptions;
/**
* @see
* https://developer.chrome.com/apps/fileSystemProvider#event-onGetMetadataRequested
* @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
* requestId: !unpacker.types.RequestId,
* entryPath: string,
* thumbnail: boolean}>}
*/
unpacker.types.GetMetadataRequestedOptions;
/**
* @see
* https://developer.chrome.com/apps/fileSystemProvider#event-onReadDirectoryRequested
* @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
* requestId: !unpacker.types.RequestId,
* directoryPath: string}>}
*/
unpacker.types.ReadDirectoryRequestedOptions;
/**
* @see
* https://developer.chrome.com/apps/fileSystemProvider#event-onOpenFileRequested
* @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
* requestId: !unpacker.types.RequestId,
* filePath: string,
* mode: !OpenFileMode}>}
*/
unpacker.types.OpenFileRequestedOptions;
/**
* @see
* https://developer.chrome.com/apps/fileSystemProvider#event-onCloseFileRequested
* @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
* requestId: !unpacker.types.RequestId,
* openRequestId: !unpacker.types.RequestId}>}
*/
unpacker.types.CloseFileRequestedOptions;
/**
* @see
* https://developer.chrome.com/apps/fileSystemProvider#event-onReadFileRequested
* @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
* requestId: !unpacker.types.RequestId,
* openRequestId: !unpacker.types.RequestId,
* offset: number,
* length: number}>}
*/
unpacker.types.ReadFileRequestedOptions;