summary refs log tree commit diff
path: root/src/util/interfaces
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-14 05:43:24 +0100
committerRory& <root@rory.gay>2026-03-14 05:43:42 +0100
commit8bb0b84b5e2260dc9bbd6cf90ca4dddeb91b1a02 (patch)
treea9206491206888ed464353c3c5570620b2ea3352 /src/util/interfaces
parentRemove unused imports for entities (diff)
downloadserver-ts-8bb0b84b5e2260dc9bbd6cf90ca4dddeb91b1a02.tar.xz
Shorten imports
Diffstat (limited to 'src/util/interfaces')
-rw-r--r--src/util/interfaces/ConnectedAccount.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/util/interfaces/ConnectedAccount.ts b/src/util/interfaces/ConnectedAccount.ts

index 57cda25d..0433355c 100644 --- a/src/util/interfaces/ConnectedAccount.ts +++ b/src/util/interfaces/ConnectedAccount.ts
@@ -15,21 +15,3 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ - -export interface ConnectedAccountCommonOAuthTokenResponse { - access_token: string; - token_type: string; - scope: string; - refresh_token?: string; - expires_in?: number; -} - -export interface ConnectedAccountTokenData { - access_token: string; - token_type?: string; - scope?: string; - refresh_token?: string; - expires_in?: number; - expires_at?: number; - fetched_at: number; -}