UNPKG

258 BTypeScriptView Raw
1import type { AuthInterface } from "./AuthInterface";
2export interface StrategyInterface<StrategyOptions extends any[], AuthOptions extends any[], Authentication extends object> {
3 (...args: StrategyOptions): AuthInterface<AuthOptions, Authentication>;
4}