This commit is contained in:
2020-04-09 09:14:54 +02:00
parent 89a861a2dd
commit 7a9e12e62d
8 changed files with 47 additions and 17 deletions

View File

@ -1,5 +1,5 @@
import { Request, Response } from '@types/express/index.d.ts';
import Transaction from './Transaction.ts';
import { Request, Response } from '@types/express';
import Transaction from './Transaction';
export default abstract class Handler {
private _handlers: array<Function> = [];

View File

@ -1,6 +1,6 @@
import { Request, Response } from '@types/express/index.d.ts';
import Status from './Status.ts';
import Session from './Session.ts';
import { Request, Response } from '@types/express';
import Status from './Status';
import Session from './Session';
export default class Transaction {
/* private */

View File

@ -1,5 +1,5 @@
import { App } from '@types/express/index.d.ts';
import Handler from './classes/Handler.ts';
import { App } from '@types/express';
import Handler from './classes/Handler';
/**
* register an array of handlers to an express app