feat: rest hash and handler sweeping (#7255)

Co-authored-by: SpaceEEC <spaceeec@yahoo.com>
Co-authored-by: Antonio Román <kyradiscord@gmail.com>
Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com>
This commit is contained in:
Suneet Tipirneni
2022-01-17 07:50:41 -05:00
committed by GitHub
parent e65da44d9c
commit 3bb4829800
5 changed files with 139 additions and 7 deletions

View File

@@ -8,4 +8,6 @@ export interface IHandler {
options: RequestInit,
bodyData: Pick<InternalRequest, 'files' | 'body'>,
) => Promise<unknown>;
readonly inactive: boolean;
readonly id: string;
}