blob: 60a55add9723bd51ea5fb387c77721f51586ddd3 [file] [log] [blame]
import { AuthInterface } from "./AuthInterface";
export interface StrategyInterface<
StrategyOptions extends any[],
AuthOptions extends any[],
Authentication extends object
> {
(...args: StrategyOptions): AuthInterface<AuthOptions, Authentication>;
}