6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
|
|
import { Worker } from "../types"
|
||
|
|
|
||
|
|
export const work: Worker<undefined, void> = async (): Promise<void> => {
|
||
|
|
return
|
||
|
|
}
|