From b40f8905ea12407b73266d44643831b662b97d12 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Wed, 12 Apr 2023 17:06:54 -0500 Subject: [PATCH] remove id from lifted Context --- src/core/structures/context.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/structures/context.ts b/src/core/structures/context.ts index becd643..db35ba9 100644 --- a/src/core/structures/context.ts +++ b/src/core/structures/context.ts @@ -6,7 +6,6 @@ export abstract class Context { abstract get message(): Left; abstract get interaction(): Right; - abstract get id(): string; }