probot
    Preparing search index...

    Type Alias State

    type State = {
        appId?: number;
        baseUrl?: string;
        cache: Lru<string> | null;
        githubToken?: string;
        host?: string;
        initEventListeners: (OnHandler | OnAnyHandler | OnErrorHandler)[];
        initializationState: InitializationState;
        initializedPromise: DeferredPromise<void>;
        log: Logger | null;
        logFormat?: "pretty" | "json";
        logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal";
        logLevelInString?: boolean;
        logMessageKey?: string;
        octokit: ProbotOctokit | null;
        OctokitBase: typeof ProbotOctokit;
        port?: number;
        privateKey?: string;
        redisConfig?: RedisOptions | string;
        request?: RequestRequestOptions;
        sentryDsn?: string;
        server?: Server | void;
        webhookPath: string;
        webhooks: ProbotWebhooks | null;
        webhookSecret: string;
    }
    Index

    Properties

    appId?: number
    baseUrl?: string
    cache: Lru<string> | null
    githubToken?: string
    host?: string
    initEventListeners: (OnHandler | OnAnyHandler | OnErrorHandler)[]
    initializationState: InitializationState
    initializedPromise: DeferredPromise<void>
    log: Logger | null
    logFormat?: "pretty" | "json"
    logLevel?: "trace" | "debug" | "info" | "warn" | "error" | "fatal"
    logLevelInString?: boolean
    logMessageKey?: string
    octokit: ProbotOctokit | null
    OctokitBase: typeof ProbotOctokit
    port?: number
    privateKey?: string
    redisConfig?: RedisOptions | string
    request?: RequestRequestOptions
    sentryDsn?: string
    server?: Server | void
    webhookPath: string
    webhooks: ProbotWebhooks | null
    webhookSecret: string