Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using an example job like this: ```typescript export class TestJob extends Job { constructor (public readonly name: string) {super();} async handle () { console.log(`Hello, ${this.name}!`); } } ``` You'll get type safety
- Loading branch information