Interface Options

interface Options {
    Octokit?: typeof Octokit & Constructor<{} & {} & RestEndpointMethods & Api & API>;
    appId?: string | number;
    baseUrl?: string;
    githubToken?: string;
    host?: string;
    log?: Logger;
    logLevel?: "fatal" | "error" | "warn" | "info" | "debug" | "trace";
    logMessageKey?: string;
    port?: number;
    privateKey?: string;
    redisConfig?: string | RedisOptions;
    request?: RequestRequestOptions;
    secret?: string;
    webhookPath?: string;
}

Properties

Octokit?: typeof Octokit & Constructor<{} & {} & RestEndpointMethods & Api & API>
appId?: string | number
baseUrl?: string
githubToken?: string
host?: string
log?: Logger
logLevel?: "fatal" | "error" | "warn" | "info" | "debug" | "trace"
logMessageKey?: string
port?: number
privateKey?: string
redisConfig?: string | RedisOptions
request?: RequestRequestOptions
secret?: string
webhookPath?: string

Generated using TypeDoc