-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwindow.d.ts
99 lines (99 loc) · 2.59 KB
/
window.d.ts
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
interface Window {
cep: {
encoding: {
Base64: string
UTF8: string
convertion: {
ascii_to_b64: Function
b64_to_ascii: Function
b64_to_binary: Function
b64_to_utf8: Function
binary_to_b64: Function
utf8_to_b64: Function
}
}
fs: {
NO_ERROR: number
ERR_UNKNOWN: number
ERR_INVALID_PARAMS: number
ERR_NOT_FOUND: number
ERR_CANT_READ: number
ERR_UNSUPPORTED_ENCODING: number
ERR_CANT_WRITE: number
ERR_OUT_OF_SPACE: number
ERR_NOT_FILE: number
ERR_NOT_DIRECTORY: number
ERR_FILE_EXISTS: number
chmod: Function
deleteFile: Function
makedir: Function
readFile: Function
readdir: Function
rename: Function
showOpenDialog: Function
showOpenDialogEx: Function
showSaveDialogEx: Function
stat: Function
writeFile: Function
}
process: {
ERR_EXCEED_MAX_NUM_PROCESS: number
createProcess: Function
getWorkingDirectory: Function
isRunning: Function
onquit: Function
stderr: Function
stdin: Function
stdout: Function
terminate: Function
waitfor: Function
}
util: {
DEPRECATED_API: number
ERR_INVALID_URL: number
openURLInDefaultBrowser: (url: string) => number
registerExtensionUnloadCallback: (callback: Function) => {}
storeProxyCredentials: (username: string, password: string) => {}
}
}
cep_node: {
Buffer: Buffer
global: Window
process: NodeJS.Process
require: NodeRequireFunction
__dirname: string
__filename: string
}
__adobe_cep__: {
addEventListener: Function
closeExtension: Function
dispatchEvent: Function
dumpInstallationInfo: Function
evalScript: Function
getCurrentApiVersion: Function
getCurrentImsUserId: Function
getExtensionId: Function
getExtensions: Function
getHostCapabilities: Function
getHostEnvironment: Function
getMonitorScaleFactor: Function
getNetworkPreferences: Function
getScaleFactor: Function
getSystemPath: Function
imsConnect: Function
imsDisconnect: Function
imsFetchAccessToken: Function
imsFetchAccounts: Function
imsSetProxyCredentials: Function
initResourceBundle: Function
invokeAsync: Function
invokeSync: Function
registerInvalidCertificateCallback: Function
registerKeyEventsInterest: Function
removeEventListener: Function
requestOpenExtension: Function
resizeContent: Function
setScaleFactorChangedHandler: Function
showAAM: Function
}
}