Remove unused import/export

This commit is contained in:
WoLfulus
2020-10-13 20:12:56 -03:00
parent 5bdde4717d
commit 4572fc8041
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import { ServiceUnavailableException } from './exceptions';
import express, { Router } from 'express';
import emitter from './emitter';
import logger from './logger';
import { ExtensionContext, HookRegisterFunction, EndpointRegisterFunction } from './types';
import { HookRegisterFunction, EndpointRegisterFunction } from './types';
import { ensureDir } from 'fs-extra';
import * as exceptions from './exceptions';

View File

@@ -5,7 +5,7 @@ import env from '../env';
import Knex from 'knex';
import { Router } from 'express';
export type ExtensionContext = {
type ExtensionContext = {
services: typeof services;
exceptions: typeof exceptions;
database: Knex;