-
Notifications
You must be signed in to change notification settings - Fork 128
/
index.d.ts
685 lines (565 loc) · 14.4 KB
/
index.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
import { ClientRequest, RequestOptions } from 'http';
import { InspectOptions } from 'util';
declare namespace Logger {
type LogLevel = 'error' | 'warn' | 'info' | 'verbose' | 'debug' |
'silly';
type LevelOption = LogLevel | false;
interface FormatParams {
data: any[];
level: LogLevel;
logger: Logger;
message: LogMessage;
transport: Transport;
}
type Format = string | ((params: FormatParams) => any[]);
type FOpenFlags = 'r' | 'r+' | 'rs+' | 'w' | 'wx' | 'w+' | 'wx+' |
'a' | 'ax' | 'a+' | 'ax+';
type Hook = (
message: LogMessage,
transport?: Transport,
transportName?: string,
) => LogMessage | false;
interface Variables {
processType: string;
[name: string]: any;
}
type TransformFn = (options: {
data: any[],
message: LogMessage,
transport: Transport,
logger: Logger
}) => any[];
interface LogMessage {
/**
* Any arguments passed to a log function
*/
data: any[];
/**
* When the log entry was created
*/
date: Date;
/**
* From error to silly
*/
level: LogLevel;
/**
* Id of Logger instance
*/
logId?: string;
/**
* Message scope label
*/
scope?: string;
/**
* Variables used by formatter
*/
variables?: Variables;
}
interface Transport {
(message: LogMessage): void;
/**
* Messages with level lower than will be dropped
*/
level: LevelOption;
transforms: TransformFn[];
}
interface ConsoleTransport extends Transport {
/**
* String template of function for message serialization
*/
format: Format | string;
/**
* Use styles even if TTY isn't attached
*/
useStyles: boolean;
/**
* Override message printing
*/
writeFn(options: { message: LogMessage }): void;
}
interface PathVariables {
/**
* Per-user application data directory, which by default points to:
* %APPDATA% on Windows
* $XDG_CONFIG_HOME or ~/.config on Linux
* ~/Library/Application Support on macOS
*/
readonly appData: string;
/**
* Application name from productName or name of package.json
*/
readonly appName: string;
/**
* Application version from package.json
*/
readonly appVersion: string;
/**
* app.getPath('logs'). May be unavailable in old versions
*/
readonly electronDefaultDir?: string;
/**
* Name of the log file without path
*/
readonly fileName?: string;
/**
* User's home directory
*/
readonly home: string;
/**
* userData + /logs/ + fileName on Linux and Windows
* ~/Library/Logs/ + appName + / + fileName on macOS
*/
readonly libraryDefaultDir: string;
/**
* Same as libraryDefaultDir, but contains '{appName}' template instead
* of the real application name
*/
readonly libraryTemplate: string;
/**
* OS temporary path
*/
readonly tempDir: string;
/**
* The directory for storing your app's configuration files, which by
* default it is the appData directory appended with your app's name.
*/
readonly userData: string;
}
interface WriteOptions {
/**
* Default 'a'
*/
flag?: FOpenFlags;
/**
* Default 0666
*/
mode?: number;
/**
* Default 'utf8'
*/
encoding?: string;
}
interface LogFile {
/**
* Full log file path
*/
readonly path: string;
/**
* How many bytes were written since transport initialization
*/
readonly bytesWritten: number;
/**
* Current file size
*/
readonly size: number;
/**
* Clear the log file
*/
clear(): boolean;
/**
* Emitted when there was some error while saving log file
*/
on(event: 'error', listener: (error: Error, file: this) => void): this;
}
interface FileTransport extends Transport {
/**
* Deprecated alias of archiveLogFn
* @deprecated
*/
archiveLog: (oldLogFile: LogFile) => void;
/**
* Function which is called on log rotation. You can override it if you need
* custom log rotation behavior. This function should remove old file
* synchronously
*/
archiveLogFn: (oldLogFile: LogFile) => void;
/**
* How deep to serialize complex objects
* Deprecated in favor of inspectOptions
* @deprecated
*/
depth: number;
/**
* Filename without path, main.log (or renderer.log) by default
*/
fileName: string;
/**
* String template of function for message serialization
*/
format: Format | string;
/**
* Return the current log file instance
* You only need to provide message argument if you define log path inside
* resolvePath callback depending on a message.
*/
getFile(message?: Partial<LogMessage>): LogFile;
/**
* Serialization options
* @link https://nodejs.org/api/util.html#util_util_inspect_object_options
*/
inspectOptions: InspectOptions;
/**
* Maximum size of log file in bytes, 1048576 (1mb) by default. When a log
* file exceeds this limit, it will be moved to log.old.log file and the
* current file will be cleared. You can set it to 0 to disable rotation
*/
maxSize: number;
/**
* Reads content of all log files
*/
readAllLogs(
options?: { fileFilter?: (logPath: string) => boolean },
): Array<{ path: string, lines: string[] }>;
/**
* Alias for resolvePathFn
* @deprecated
*/
resolvePath: (variables: PathVariables, message?: LogMessage) => string;
/**
* Allow to change log file path dynamically
*/
resolvePathFn: (variables: PathVariables, message?: LogMessage) => string;
/**
* Override appName used for resolving log path
* @param appName
*/
setAppName(appName: string): void;
/**
* Whether to write a log file synchronously. Default to true
*/
sync: boolean;
/**
* Options used when writing a file
*/
writeOptions?: WriteOptions;
}
interface RemoteTransport extends Transport {
/**
* Client information which will be sent in each request together with
* a message body
*/
client?: object;
/**
* How deep to serialize complex objects
*/
depth?: number;
/**
* Additional options for the HTTP request
*/
requestOptions?: RequestOptions;
/**
* Callback which is called on request error
*/
processErrorFn: (error: Error) => void;
/**
* Callback which transforms request body to string
*/
makeBodyFn: (
options: { logger: Logger, message: LogMessage, transport: Transport },
) => any;
/**
* Callback which allows to customize request sending
*/
sendRequestFn: (
options: { serverUrl: string, requestOptions: RequestOptions, body: any }
) => ClientRequest;
/**
* Server URL
*/
url: string;
}
interface MainTransports {
/**
* Writes logs to console
*/
console: ConsoleTransport;
/**
* Writes logs to a file
*/
file: FileTransport;
/**
* Display main process logs in the renderer dev tools console
*/
ipc: Transport;
/**
* Sends a JSON POST request with LogMessage in the body to the specified url
*/
remote: RemoteTransport;
[key: string]: Transport | null;
}
interface RendererTransports {
/**
* Writes logs to console
*/
console: ConsoleTransport;
/**
* Communicates with a main process logger
*/
ipc: Transport;
[key: string]: Transport | null;
}
interface Buffering {
/**
* Buffered log messages
*/
buffer: LogMessage[];
enabled: boolean;
/**
* Start buffering log messages
*/
begin(): void;
/**
* Stop buffering and process all buffered logs
*/
commit(): void;
/**
* Stop buffering and discard all buffered logs
*/
reject(): void;
}
interface Scope {
(label: string): LogFunctions;
/**
* Label for log message without scope. If set to false and scope isn't
* set, no padding is used
*/
defaultLabel: string | false;
/**
* Pad scope label using spaces
* false: disabled
* true: automatically
* number: set exact maximum label length. Helpful when a scope can
* be created after some log messages were sent
*/
labelPadding: boolean | number;
}
interface ReportData {
body: string;
title: string;
assignee: string;
labels: string;
milestone: string;
projects: string;
template: string;
}
interface LogFunctions {
/**
* Log an error message
*/
error(...params: any[]): void;
/**
* Log a warning message
*/
warn(...params: any[]): void;
/**
* Log an informational message
*/
info(...params: any[]): void;
/**
* Log a verbose message
*/
verbose(...params: any[]): void;
/**
* Log a debug message
*/
debug(...params: any[]): void;
/**
* Log a silly message
*/
silly(...params: any[]): void;
/**
* Shortcut to info
*/
log(...params: any[]): void;
}
interface ErrorHandlerOptions {
/**
* Default true for the main process. Set it to false to prevent showing a
* default electron error dialog
*/
showDialog?: boolean;
/**
* Attach a custom error handler. If the handler returns false, this error
* will not be processed
*/
onError?(options: {
createIssue: (url: string, data: ReportData | any) => void,
error: Error,
errorName: 'Unhandled' | 'Unhandled rejection',
processType: 'browser' | 'renderer',
versions: { app: string; electron: string; os: string },
}): void;
}
interface MainErrorHandlerOptions extends ErrorHandlerOptions {
/**
* Attach a custom error handler. If the handler returns false, this error
* will not be processed
*/
onError?(options: {
createIssue: (url: string, data: ReportData | any) => void,
error: Error,
errorName: 'Unhandled' | 'Unhandled rejection',
processType: 'browser' | 'renderer',
versions: { app: string; electron: string; os: string },
}): void;
}
interface RendererErrorHandlerOptions extends ErrorHandlerOptions {
/**
* Attach a custom error handler. If the handler returns false, this error
* will not be processed
*/
onError?(options: {
error: Error,
errorName: 'Unhandled' | 'Unhandled rejection',
processType: 'browser' | 'renderer',
}): void;
/**
* By default, error and unhandledrejection handlers call preventDefault to
* prevent error duplicating in console. Set false to disable it
*/
preventDefault?: boolean;
}
interface ErrorHandler<T = ErrorHandlerOptions> {
/**
* Process an error by the ErrorHandler
*/
handle(error: Error, options?: T): void;
/**
* Change some options
*/
setOptions(options: T): void;
/**
* Start catching unhandled errors and rejections
*/
startCatching(options?: T): void;
/**
* Stop catching unhandled errors and rejections
*/
stopCatching(): void;
}
type EventSource = 'app' | 'webContents';
interface EventFormatterInput {
args: unknown[];
event: object;
eventName: string;
eventSource: string;
}
interface EventLoggerOptions {
/**
* String template or function which prepares event data for logging
*/
format?: string | ((input: EventFormatterInput) => unknown[]);
/**
* Formatter callbacks for a specific event
*/
formatters?: Record<
EventSource,
Record<string, (input: EventFormatterInput) => object | unknown[]>
>;
/**
* Allow switching specific events on/off easily
*/
events?: Record<EventSource, Record<string, boolean>>;
/**
* Which log level is used for logging. Default warn
*/
level?: LogLevel;
/**
* Which log scope is used for logging. Default '' (none)
*/
scope?: string;
}
interface EventLogger extends Required<EventLoggerOptions> {
setOptions(options: EventLoggerOptions): void;
startLogging(options?: EventLoggerOptions): void;
stopLogging(): void;
}
interface Logger extends LogFunctions {
/**
* Buffering helper
*/
buffering: Buffering;
/**
* Error handling helper
*/
errorHandler: ErrorHandler;
/**
* Object contained only log functions
*/
functions: LogFunctions;
/**
* Array with all attached hooks
*/
hooks: Hook[];
/**
* Array with all available levels
*/
levels: string[];
/**
* ID of the current logger instance
*/
logId: string;
/**
* Create a new scope
*/
scope: Scope;
/**
* Transport instances
*/
transports: { [key: string]: Transport | null; };
/**
* Variables used by formatters
*/
variables: Variables;
/**
* Add a custom log level
*/
addLevel(level: string, index?: number): void;
/**
* Catch and log unhandled errors/rejected promises
* @deprecated
*/
catchErrors(options?: ErrorHandlerOptions): ErrorHandler;
/**
* Create a new electron-log instance
*/
create(options: { logId: string }): this;
/**
* Low level method which logs the message using specified transports
*/
processMessage(
message: LogMessage,
options?: { transports?: Transport[] | string[] },
): void;
}
interface NodeLogger extends Logger {
errorHandler: ErrorHandler<MainErrorHandlerOptions>;
eventLogger: EventLogger;
transports: MainTransports;
}
interface MainLogger extends NodeLogger {
initialize(
options?: {
getSessions?: () => object[];
includeFutureSessions?: boolean;
preload?: string | boolean;
spyRendererConsole?: boolean;
},
): void;
}
interface RendererLogger extends Logger {
errorHandler: ErrorHandler<RendererErrorHandlerOptions>;
transports: RendererTransports;
}
}
// Merge namespace with interface
declare const Logger: Logger.MainLogger & {
default: Logger.MainLogger;
};
export = Logger;
declare global {
const __electronLog: Logger.LogFunctions;
interface Window {
__electronLog: Logger.LogFunctions;
}
}