blob: d56e7f5c55e77882b440a69539d3b348c39a402d (
plain)
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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export interface Attachment {
name: string;
size: number;
readable: boolean;
}
export enum DisplayAnnotationsAction {
DISPLAY_ANNOTATIONS = 'display-annotations',
HIDE_ANNOTATIONS = 'hide-annotations',
}
export interface DocumentMetadata {
author: string;
canSerializeDocument: boolean;
creationDate: string;
creator: string;
fileSize: string;
keywords: string;
linearized: boolean;
modDate: string;
pageSize: string;
producer: string;
subject: string;
title: string;
version: string;
}
/** Enumeration of page fitting types. */
export enum FittingType {
NONE = 'none',
FIT_TO_PAGE = 'fit-to-page',
FIT_TO_WIDTH = 'fit-to-width',
FIT_TO_HEIGHT = 'fit-to-height',
}
export interface NamedDestinationMessageData {
messageId: string;
pageNumber: number;
namedDestinationView?: string;
}
/**
* Enumeration of save message request types. Must match `SaveRequestType` in
* pdf/pdf_view_web_plugin.h.
*/
export enum SaveRequestType {
ANNOTATION,
ORIGINAL,
EDITED,
}
export interface Point {
x: number;
y: number;
}
export type ExtendedKeyEvent = KeyboardEvent&{
fromScriptingAPI?: boolean,
fromPlugin?: boolean,
};
|