From 9191285e35d9bd58aad9ddca05001f1b58cb9dac Mon Sep 17 00:00:00 2001 From: envis10n Date: Mon, 21 Mar 2022 13:36:45 -0500 Subject: [PATCH] Clean up collection.ts --- collection.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/collection.ts b/collection.ts index d23d71c..e68eef1 100644 --- a/collection.ts +++ b/collection.ts @@ -1,6 +1,5 @@ import { axiod } from "./deps.ts"; import { ArangoCursor, CursorOptions } from "./cursor.ts"; -import { Edge, EdgeResponse } from "./edge.ts"; /** * Define Document methods. @@ -10,13 +9,6 @@ export interface DocumentBase { delete(): Promise; } -export type DocumentResponse = { - code?: number; - error?: boolean; - errorMessage?: string; - errorNum?: number; -} & Partial>; - /** * Join DocumentData and DocumentBase */