export interface ExampleWorker { add: (a: number, b: number) => Promise; subtract: (a: number, b: number) => number; foo: string; }