mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
chore: prettify frontend code
This commit is contained in:
@@ -1,58 +1,58 @@
|
||||
import { HeaderOperations } from "./common";
|
||||
import { HeaderOperations } from './common'
|
||||
|
||||
export interface ClientPluginOptions { }
|
||||
export interface ClientPluginOptions {}
|
||||
|
||||
export interface TypedClientPluginOptions {
|
||||
type: string;
|
||||
clientPluginOptions?: ClientPluginOptions;
|
||||
type: string
|
||||
clientPluginOptions?: ClientPluginOptions
|
||||
}
|
||||
|
||||
export interface HTTP2HTTPSPluginOptions {
|
||||
type?: string;
|
||||
localAddr?: string;
|
||||
hostHeaderRewrite?: string;
|
||||
requestHeaders?: HeaderOperations;
|
||||
type?: string
|
||||
localAddr?: string
|
||||
hostHeaderRewrite?: string
|
||||
requestHeaders?: HeaderOperations
|
||||
}
|
||||
|
||||
export interface HTTPProxyPluginOptions {
|
||||
type?: string;
|
||||
httpUser?: string;
|
||||
httpPassword?: string;
|
||||
type?: string
|
||||
httpUser?: string
|
||||
httpPassword?: string
|
||||
}
|
||||
|
||||
export interface HTTPS2HTTPPluginOptions {
|
||||
type?: string;
|
||||
localAddr?: string;
|
||||
hostHeaderRewrite?: string;
|
||||
requestHeaders?: HeaderOperations;
|
||||
crtPath?: string;
|
||||
keyPath?: string;
|
||||
type?: string
|
||||
localAddr?: string
|
||||
hostHeaderRewrite?: string
|
||||
requestHeaders?: HeaderOperations
|
||||
crtPath?: string
|
||||
keyPath?: string
|
||||
}
|
||||
|
||||
export interface HTTPS2HTTPSPluginOptions {
|
||||
type?: string;
|
||||
localAddr?: string;
|
||||
hostHeaderRewrite?: string;
|
||||
requestHeaders?: HeaderOperations;
|
||||
crtPath?: string;
|
||||
keyPath?: string;
|
||||
type?: string
|
||||
localAddr?: string
|
||||
hostHeaderRewrite?: string
|
||||
requestHeaders?: HeaderOperations
|
||||
crtPath?: string
|
||||
keyPath?: string
|
||||
}
|
||||
|
||||
export interface Socks5PluginOptions {
|
||||
type?: string;
|
||||
username?: string;
|
||||
password?: string;
|
||||
type?: string
|
||||
username?: string
|
||||
password?: string
|
||||
}
|
||||
|
||||
export interface StaticFilePluginOptions {
|
||||
type?: string;
|
||||
localPath?: string;
|
||||
stripPrefix?: string;
|
||||
httpUser?: string;
|
||||
httpPassword?: string;
|
||||
type?: string
|
||||
localPath?: string
|
||||
stripPrefix?: string
|
||||
httpUser?: string
|
||||
httpPassword?: string
|
||||
}
|
||||
|
||||
export interface UnixDomainSocketPluginOptions {
|
||||
type?: string;
|
||||
unixPath?: string;
|
||||
type?: string
|
||||
unixPath?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user