Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LoadBundleTaskProgress

Represents a progress update or a final state from loading bundles.

interface LoadBundleTaskProgress {
bytesLoaded: number;
documentsLoaded: number;
taskState: TaskState;
totalBytes: number;
totalDocuments: number;
}

§Properties

§
bytesLoaded: number
[src]

How many bytes have been loaded.

§
documentsLoaded: number
[src]

How many documents have been loaded.

§
taskState: TaskState
[src]

Current task state.

§
totalBytes: number
[src]

How many bytes are in the bundle being loaded.

§
totalDocuments: number
[src]

How many documents are in the bundle being loaded.