mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 20:08:37 +00:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import type { NamespaceHandlers } from '../type';
|
|
import { savePDFFileAs } from './pdf';
|
|
|
|
export const exportHandlers = {
|
|
savePDFFileAs: async (_, title: string) => {
|
|
return savePDFFileAs(title);
|
|
},
|
|
} satisfies NamespaceHandlers;
|
|
|
|
export * from './pdf';
|