Skip to content

Instantly share code, notes, and snippets.

View maslade's full-sized avatar
⚒️
Beating up GraphQL

Mark Slade maslade

⚒️
Beating up GraphQL
  • Peak 46 Development, LLC.
  • Syracuse, NY
View GitHub Profile
import { eachPromise, formatDate, formatTask, getLogger } from './utils';
export interface DurableServerTask {
id: number;
startedAt: Date;
description: string;
details: any;
end: () => void;
}