UNPKG

@jovian/type-tools

Version:

TypeTools is a Typescript library for providing extensible tooling runtime validations and type helpers.

13 lines (9 loc) 266 B
/* * Copyright 2014-2021 Jovian, all rights reserved. */ import { AsyncActionHandlers } from "../proc/async.worker.proc"; export const asyncWorkerExtensionSample: AsyncActionHandlers = { sampleAction: (payload, worker) => { return 'Hello World!'; }, };