-
Notifications
You must be signed in to change notification settings - Fork 92
/
global.d.ts
138 lines (133 loc) · 2.94 KB
/
global.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
/*
* Copyright (c) 2023 The Weibo-Picture-Store Authors. All rights reserved.
* Use of this source code is governed by a MIT-style license that can be
* found in the LICENSE file.
*
*/
/**
* Global Variable
*/
declare var __isDev: boolean;
/**
* Union type of schema
*/
declare type ServiceWorkerMessage = RSS.GetRuleId | RSS.AddLog | RSS.WithoutCorsMode;
declare type ContentScriptMessage = RSS.AllowPointerEvents | RSS.WriteToClipboard | RSS.UploadVideoFrame;
/**
* RuntimeSchemaSets Namespace
*/
declare namespace RSS {
/**
* Service Worker
*/
interface GetRuleId {
cmd: "GetRuleId";
}
interface AddLog {
cmd: "AddLog";
type: string;
data: WB.LogErrDetail;
}
interface WithoutCorsMode {
cmd: "WithoutCorsMode";
}
/**
* Content Script
*/
interface WriteToClipboard {
cmd: "WriteToClipboard";
content: string;
}
interface WriteToClipboardRes {
valid: boolean;
done?: boolean;
}
interface AllowPointerEvents {
cmd: "AllowPointerEvents";
command: string;
}
interface UploadVideoFrame {
cmd: "UploadVideoFrame";
srcUrl: string;
info: unknown;
}
interface UploadFrameRes {
dataURL: string;
}
}
/**
* Weibo Namespace
*/
declare namespace WB {
interface LogStoreItem {
module: string;
error?: string;
remark?: string;
type: string;
timestamp: number;
}
interface LogErrDetail {
module: string;
error?: string | Error | DOMException | object | any;
remark?: string | object;
}
interface ClipSize {
width: number;
height: number;
}
interface AccountInfo {
username: string;
password: string;
allowUserAccount: boolean;
}
interface UidInfo {
uid: string;
}
interface LoginInfo {
login: boolean;
}
interface CaptchaInfo {
showpin: boolean;
}
interface AlbumInfo {
uid: string;
albumId: string;
albumList?: any[];
timestamp?: number;
}
interface AlbumPhoto {
albumId: string;
photoId: string;
picHost: string;
picName: string;
updated: string;
}
interface AlbumContents {
total: number;
albumId: string;
photos: AlbumPhoto[];
albumList: any[];
}
interface Watermark {
url: string;
nick: string;
logo: string | number;
markpos: string | number;
}
interface PackedItem {
blob?: Blob;
result?: ArrayBuffer;
mimeType?: string;
pid?: string;
size?: number;
width?: number;
height?: number;
}
interface AssignedPackedItem extends PackedItem {
URL: string;
HTML: string;
UBB: string;
Markdown: string;
fullDirectoryPath?: string;
}
}