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