🎨 Remove unused Imports

This commit is contained in:
RaviAnand Mohabir 2022-02-23 14:52:43 +01:00
parent 6547a2e78f
commit ade22e00f1
3 changed files with 0 additions and 3 deletions

View File

@ -1,6 +1,5 @@
import type { GetSession, RequestHandler } from "@sveltejs/kit";
import type { EndpointOutput } from "@sveltejs/kit/types/endpoint";
import { ResponseHeaders } from "@sveltejs/kit/types/helper";
import { RequestEvent } from "@sveltejs/kit/types/hooks";
import cookie from "cookie";
import * as jsonwebtoken from "jsonwebtoken";

View File

@ -1,5 +1,4 @@
import { OAuth2Provider, OAuth2ProviderConfig } from "./oauth2";
import type { ProfileCallback } from "./oauth2.base";
export interface RedditProfile {
is_employee: boolean;

View File

@ -1,6 +1,5 @@
import { RequestEvent } from "@sveltejs/kit/types/hooks";
import type { Auth } from "../auth";
import type { CallbackResult } from "../types";
import { OAuth2BaseProvider, OAuth2BaseProviderConfig } from "./oauth2.base";
interface TwitterAuthProviderConfig extends OAuth2BaseProviderConfig {