Run prettier

This commit is contained in:
rijkvanzanten
2020-09-22 16:11:28 -04:00
parent e703d1e928
commit 85ca7b5d17
25 changed files with 203 additions and 129 deletions

View File

@@ -6,10 +6,10 @@ import Knex from 'knex';
import { Router } from 'express';
type ExtensionContext = {
services: typeof services,
exceptions: typeof exceptions,
database: Knex,
env: typeof env,
services: typeof services;
exceptions: typeof exceptions;
database: Knex;
env: typeof env;
};
export type HookRegisterFunction = (context: ExtensionContext) => Record<string, ListenerFn>;