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