From 5c8359ec45da01e983a3c60d380e7fab720da600 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Sun, 6 Aug 2023 22:56:13 -0400 Subject: Fix connection class imports --- src/connections/Twitter/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/connections/Twitter/index.ts') diff --git a/src/connections/Twitter/index.ts b/src/connections/Twitter/index.ts index aa48ca12..4526fdf5 100644 --- a/src/connections/Twitter/index.ts +++ b/src/connections/Twitter/index.ts @@ -22,9 +22,9 @@ import { ConnectionCallbackSchema, ConnectionLoader, DiscordApiErrors, + RefreshableConnection, } from "@spacebar/util"; import wretch from "wretch"; -import RefreshableConnection from "../../util/connections/RefreshableConnection"; import { TwitterSettings } from "./TwitterSettings"; interface TwitterUserResponse { @@ -40,10 +40,10 @@ interface TwitterUserResponse { }; } -interface TwitterErrorResponse { - error: string; - error_description: string; -} +// interface TwitterErrorResponse { +// error: string; +// error_description: string; +// } export default class TwitterConnection extends RefreshableConnection { public readonly id = "twitter"; -- cgit 1.5.1