We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28c2b4e commit 9a8d603Copy full SHA for 9a8d603
1 file changed
src/renderer/DesktopAPI/webBinding.ts
@@ -392,6 +392,16 @@ const publicAPI: any = {
392
return { data: fonts };
393
},
394
395
+ async getModifiedFonts(args: WebApi.GetFonts) {
396
+ const fonts = await E.ipcRenderer.invoke("getFonts");
397
+ return { data: fonts };
398
+ },
399
+
400
+ async getFontsModifiedAt(args: WebApi.GetFonts) {
401
402
403
404
405
async getFontFile(args: WebApi.GetFontFile) {
406
const fontBuffer = await E.ipcRenderer.invoke("getFontFile", args);
407
0 commit comments