@wox-launcher/wox-plugin 0.0.55 → 0.0.57
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 +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -137,12 +137,12 @@ export interface PublicAPI {
|
|
|
137
137
|
*/
|
|
138
138
|
OnSettingChanged: (callback: (key: string, value: string) => void) => Promise<void>;
|
|
139
139
|
}
|
|
140
|
-
export type WoxImageType = "absolute" | "relative" | "base64" | "svg" | "url";
|
|
140
|
+
export type WoxImageType = "absolute" | "relative" | "base64" | "svg" | "url" | "emoji";
|
|
141
141
|
export interface WoxImage {
|
|
142
142
|
ImageType: WoxImageType;
|
|
143
143
|
ImageData: string;
|
|
144
144
|
}
|
|
145
|
-
export type WoxPreviewType = "markdown" | "text" | "image" | "url";
|
|
145
|
+
export type WoxPreviewType = "markdown" | "text" | "image" | "url" | "pdf";
|
|
146
146
|
export interface WoxPreview {
|
|
147
147
|
PreviewType: WoxPreviewType;
|
|
148
148
|
PreviewData: string;
|