Skip to content

AelionTypedExportJob

Defined in: packages/sdk/src/types.ts:396

  • Promise<TResult>

TResult

readonly [toStringTag]: string

Defined in: node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:176

Promise.[toStringTag]


readonly id: string

Defined in: packages/sdk/src/types.ts:397


readonly result: Promise<TResult>

Defined in: packages/sdk/src/types.ts:399


readonly state: AelionExportJobState

Defined in: packages/sdk/src/types.ts:398

cancel(reason?): Promise<void>

Defined in: packages/sdk/src/types.ts:400

unknown

Promise<void>


catch<TResult>(onrejected?): Promise<TResult | TResult>

Defined in: node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts:1557

Attaches a callback for only the rejection of the Promise.

TResult = never

The callback to execute when the Promise is rejected.

(reason) => TResult | PromiseLike<TResult> | null

Promise<TResult | TResult>

A Promise for the completion of the callback.

Promise.catch


finally(onfinally?): Promise<TResult>

Defined in: node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts:29

Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The resolved value cannot be modified from the callback.

The callback to execute when the Promise is settled (fulfilled or rejected).

() => void | null

Promise<TResult>

A Promise for the completion of the callback.

Promise.finally


getSnapshot(): AelionExportJobSnapshot

Defined in: packages/sdk/src/types.ts:401

AelionExportJobSnapshot


subscribe(listener): () => void

Defined in: packages/sdk/src/types.ts:402

(snapshot) => void

(): void

void


then<TResult1, TResult2>(onfulfilled?, onrejected?): Promise<TResult1 | TResult2>

Defined in: node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts:1550

Attaches callbacks for the resolution and/or rejection of the Promise.

TResult1 = TResult

TResult2 = never

The callback to execute when the Promise is resolved.

(value) => TResult1 | PromiseLike<TResult1> | null

The callback to execute when the Promise is rejected.

(reason) => TResult2 | PromiseLike<TResult2> | null

Promise<TResult1 | TResult2>

A Promise for the completion of which ever callback is executed.

Promise.then