ranui 0.1.10-alpha.17 → 0.1.10-alpha.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +18 -16
- package/dist/typings.d.ts +18 -16
- package/package.json +1 -1
- package/typings.d.ts +18 -16
package/dist/index.d.ts
CHANGED
|
@@ -110,22 +110,24 @@ interface MathJax {
|
|
|
110
110
|
tex2chtmlPromise: (x: string, y: object) => Promise<Element>;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
declare
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
113
|
+
declare global {
|
|
114
|
+
interface Window {
|
|
115
|
+
ranui: Partial<Ranui>;
|
|
116
|
+
message: Partial<Ran.Message>;
|
|
117
|
+
MathJax: MathJax;
|
|
118
|
+
katex: {
|
|
119
|
+
render: (x: string, y: HTMLElement, z: object) => void;
|
|
120
|
+
};
|
|
121
|
+
pdfjsLib: {
|
|
122
|
+
GlobalWorkerOptions: {
|
|
123
|
+
workerSrc: string;
|
|
124
|
+
};
|
|
125
|
+
getDocument: (x: string | ArrayBuffer) => {
|
|
126
|
+
promise: Promise<PDFDocumentProxy>;
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
Hls: HLS;
|
|
130
|
+
}
|
|
129
131
|
}
|
|
130
132
|
|
|
131
133
|
namespace JSX {
|
package/dist/typings.d.ts
CHANGED
|
@@ -91,22 +91,24 @@ interface MathJax {
|
|
|
91
91
|
tex2chtmlPromise: (x: string, y: object) => Promise<Element>;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
declare
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
94
|
+
declare global {
|
|
95
|
+
interface Window {
|
|
96
|
+
ranui: Partial<Ranui>;
|
|
97
|
+
message: Partial<Ran.Message>;
|
|
98
|
+
MathJax: MathJax;
|
|
99
|
+
katex: {
|
|
100
|
+
render: (x: string, y: HTMLElement, z: object) => void;
|
|
101
|
+
};
|
|
102
|
+
pdfjsLib: {
|
|
103
|
+
GlobalWorkerOptions: {
|
|
104
|
+
workerSrc: string;
|
|
105
|
+
};
|
|
106
|
+
getDocument: (x: string | ArrayBuffer) => {
|
|
107
|
+
promise: Promise<PDFDocumentProxy>;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
Hls: HLS;
|
|
111
|
+
}
|
|
110
112
|
}
|
|
111
113
|
|
|
112
114
|
namespace JSX {
|
package/package.json
CHANGED
package/typings.d.ts
CHANGED
|
@@ -91,22 +91,24 @@ interface MathJax {
|
|
|
91
91
|
tex2chtmlPromise: (x: string, y: object) => Promise<Element>;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
declare
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
94
|
+
declare global {
|
|
95
|
+
interface Window {
|
|
96
|
+
ranui: Partial<Ranui>;
|
|
97
|
+
message: Partial<Ran.Message>;
|
|
98
|
+
MathJax: MathJax;
|
|
99
|
+
katex: {
|
|
100
|
+
render: (x: string, y: HTMLElement, z: object) => void;
|
|
101
|
+
};
|
|
102
|
+
pdfjsLib: {
|
|
103
|
+
GlobalWorkerOptions: {
|
|
104
|
+
workerSrc: string;
|
|
105
|
+
};
|
|
106
|
+
getDocument: (x: string | ArrayBuffer) => {
|
|
107
|
+
promise: Promise<PDFDocumentProxy>;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
Hls: HLS;
|
|
111
|
+
}
|
|
110
112
|
}
|
|
111
113
|
|
|
112
114
|
namespace JSX {
|