lint
This commit is contained in:
@ -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> = [];
|
||||
|
@ -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 */
|
@ -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
|
||||
|
Reference in New Issue
Block a user