-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpropertyName.ts
More file actions
73 lines (72 loc) · 2 KB
/
Copy pathpropertyName.ts
File metadata and controls
73 lines (72 loc) · 2 KB
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
export module PropertyName {
export enum Custom {
AnnotationAdded,
ByteLength,
BytesPerPdfPage,
// Parity-gap candidate (V3 contentCaptureInject doesn't measure DOM size diff).
BytesTrimmed,
ClipMode,
CloseReason,
// Parity-gap candidate (V3 article mode has TextHighlighter but doesn't log
// whether highlights were applied at save time).
ContainsAtLeastOneHighlight,
ContentType,
CorrelationId,
CurrentPanel,
CurrentSectionStillExists,
// Parity-gap candidate (V3 contentCaptureInject doesn't measure DOM size).
DomSizeInBytes,
// Parity-gap candidate (V3 article mode has font +/- buttons but doesn't log size).
FontSize,
ForceRetrieveFreshLocStrings,
FreshUserInfoAvailable,
// Parity-gap candidate (V3 captures full page but no telemetry).
FullPageScreenshotContentFound,
Height,
InvokeMode,
InvokeSource,
IsHighDpiScreen,
// Parity-gap candidate (V3 article mode has serif/sans-serif toggle but doesn't log).
IsSerif,
Key,
LastUpdated,
NumRegions,
PageTitleModified,
PdfAllPagesClipped,
PdfAttachmentClipped,
PdfFileSelectedPageCount,
PdfFileTotalPageCount,
PdfIsBatched,
PdfIsLocalFile,
SignInCancelled,
StoredLocaleDifferentThanRequested,
UpdateInterval,
UserInformationReturned,
UserInformationStored,
UserUpdateReason,
Value,
Width,
WriteableCookies,
DataBoundary
}
/* tslint:disable:variable-name */
export module Reserved {
export let Category = "Category";
export let Duration = "Duration";
export let EventName = "EventName";
export let EventType = "EventType";
export let FailureInfo = "FailureInfo";
export let FailureType = "FailureType";
export let Id = "Id";
export let Label = "Label";
export let Level = "Level";
export let Message = "Message";
export let Properties = "Properties";
export let StackTrace = "StackTrace";
export let Status = "Status";
export let Stream = "Stream";
export let Trigger = "Trigger";
export let WebClipper = "WebClipper";
}
/* tslint:enable:variable-name */
}