UNPKG

195 BTypeScriptView Raw
1import { Type } from '../interfaces';
2export declare function PassportStrategy<T extends Type<any> = any>(Strategy: T, name?: string | undefined): {
3 new (...args: any[]): InstanceType<T>;
4};