homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge.
14 lines (13 loc) • 633 B
TypeScript
import { Strategy } from 'passport-jwt';
import { ConfigService } from '../config/config.service.js';
import { AuthService } from './auth.service.js';
declare const JwtStrategy_base: new (...args: [opt: import("passport-jwt").StrategyOptionsWithRequest] | [opt: import("passport-jwt").StrategyOptionsWithoutRequest]) => Strategy & {
validate(...args: any[]): unknown;
};
export declare class JwtStrategy extends JwtStrategy_base {
private readonly configService;
private readonly authService;
constructor(configService: ConfigService, authService: AuthService);
validate(payload: any): Promise<any>;
}
export {};