Interface OneSDKConfig

interface OneSDKConfig {
    commentLimit: number;
    disabledDelay: boolean;
    excludeIds: null | string[];
    excludeNames: null | string[];
    excludes: null | string[];
    host: string;
    includeIds: null | string[];
    includeNames: null | string[];
    includes: null | string[];
    intervalTime: number;
    lifeTime: number;
    maxQueueInterval: number;
    mode: "all" | "diff";
    pathname: string;
    permissions: null | ("all" | SendType)[];
    port: number;
    protocol: Protocol;
    reconnectInterval: number;
    requestInterval: number;
}

Properties

commentLimit: number
disabledDelay: boolean
excludeIds: null | string[]
excludeNames: null | string[]
excludes: null | string[]
host: string
includeIds: null | string[]
includeNames: null | string[]
includes: null | string[]
intervalTime: number
lifeTime: number
maxQueueInterval: number
mode: "all" | "diff"
pathname: string
permissions: null | ("all" | SendType)[]
port: number
protocol: Protocol
reconnectInterval: number
requestInterval: number