Interface SteamInspectQueueItem

Steam inspect queue item

interface SteamInspectQueueItem {
    inspectData: AnalyzedInspectURL;
    resolve: ((value) => void);
    reject: ((reason?) => void);
    timestamp: number;
}

Properties

inspectData: AnalyzedInspectURL

Analyzed inspect URL information

resolve: ((value) => void)

Promise resolve function

Type declaration

    • (value): void
    • Parameters

      • value: any

      Returns void

reject: ((reason?) => void)

Promise reject function

Type declaration

    • (reason?): void
    • Parameters

      • Optional reason: any

      Returns void

timestamp: number

Timestamp when item was added to queue