homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
10 lines (9 loc) • 336 B
TypeScript
/// <reference types="node" />
import { IncomingMessage, ServerResponse } from 'http';
interface FeaturePolicyOptions {
features: {
[featureName: string]: string[];
};
}
declare const _default: (options: FeaturePolicyOptions) => (_req: IncomingMessage, res: ServerResponse, next: () => void) => void;
export = _default;