aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/render/plugin.ts
blob: a8dd0a7c0542fae91b3d2e71fc32818ff571ee49 (plain)
1
2
3
4
5
6
7
8
9
10
export type FileRenderPlugin = {
  // unique plugin name
  name: string;

  // test if plugin can handle a specified file
  canHandle: (filename: string, mimeType: string) => boolean;

  // render file content
  render: (container: HTMLElement, fileUrl: string, options?: any) => Promise<void>;
}