this repo has no description
at main 5 lines 122 B view raw
1export type AppletRunFunc = () => Promise<undefined>; 2export interface Applet { 3 name: string; 4 runFunc: AppletRunFunc; 5}