10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
import { IBaseConfig } from "./IBaseConfig"
|
||
|
|
||
|
export interface IHttpConfig extends IBaseConfig
|
||
|
{
|
||
|
webSocketPingDelayMs: number
|
||
|
kind: "aki-http"
|
||
|
ip: string
|
||
|
port: number
|
||
|
logRequests: boolean
|
||
|
}
|