UNPKG

@notion-md-converter/types

Version:
12 lines (11 loc) 288 B
import type { FileObject } from "./notion"; export type FileAdapter = (fileObject: FileObject) => { url: string; }; export type FileAdapterFactory = (execute: (args: { type: FileObject["type"]; url: string; expiryTime?: string; }) => { url: string; }) => FileAdapter;