1export type AppletRunFunc = () => Promise<undefined>; 2export interface Applet { 3 name: string; 4 runFunc: AppletRunFunc; 5}