AelionTypedExportJob
此内容尚不支持你的语言。
Defined in: packages/sdk/src/types.ts:396
Extends
Section titled “Extends”Promise<TResult>
Type Parameters
Section titled “Type Parameters”TResult
Section titled “TResult”TResult
Properties
Section titled “Properties”[toStringTag]
Section titled “[toStringTag]”
readonly[toStringTag]:string
Defined in: node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts:176
Inherited from
Section titled “Inherited from”Promise.[toStringTag]
readonlyid:string
Defined in: packages/sdk/src/types.ts:397
result
Section titled “result”
readonlyresult:Promise<TResult>
Defined in: packages/sdk/src/types.ts:399
readonlystate:AelionExportJobState
Defined in: packages/sdk/src/types.ts:398
Methods
Section titled “Methods”cancel()
Section titled “cancel()”cancel(
reason?):Promise<void>
Defined in: packages/sdk/src/types.ts:400
Parameters
Section titled “Parameters”reason?
Section titled “reason?”unknown
Returns
Section titled “Returns”Promise<void>
catch()
Section titled “catch()”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.
Type Parameters
Section titled “Type Parameters”TResult
Section titled “TResult”TResult = never
Parameters
Section titled “Parameters”onrejected?
Section titled “onrejected?”The callback to execute when the Promise is rejected.
(reason) => TResult | PromiseLike<TResult> | null
Returns
Section titled “Returns”Promise<TResult | TResult>
A Promise for the completion of the callback.
Inherited from
Section titled “Inherited from”Promise.catch
finally()
Section titled “finally()”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.
Parameters
Section titled “Parameters”onfinally?
Section titled “onfinally?”The callback to execute when the Promise is settled (fulfilled or rejected).
() => void | null
Returns
Section titled “Returns”Promise<TResult>
A Promise for the completion of the callback.
Inherited from
Section titled “Inherited from”Promise.finally
getSnapshot()
Section titled “getSnapshot()”getSnapshot():
AelionExportJobSnapshot
Defined in: packages/sdk/src/types.ts:401
Returns
Section titled “Returns”subscribe()
Section titled “subscribe()”subscribe(
listener): () =>void
Defined in: packages/sdk/src/types.ts:402
Parameters
Section titled “Parameters”listener
Section titled “listener”(snapshot) => void
Returns
Section titled “Returns”():
void
Returns
Section titled “Returns”void
then()
Section titled “then()”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.
Type Parameters
Section titled “Type Parameters”TResult1
Section titled “TResult1”TResult1 = TResult
TResult2
Section titled “TResult2”TResult2 = never
Parameters
Section titled “Parameters”onfulfilled?
Section titled “onfulfilled?”The callback to execute when the Promise is resolved.
(value) => TResult1 | PromiseLike<TResult1> | null
onrejected?
Section titled “onrejected?”The callback to execute when the Promise is rejected.
(reason) => TResult2 | PromiseLike<TResult2> | null
Returns
Section titled “Returns”Promise<TResult1 | TResult2>
A Promise for the completion of which ever callback is executed.
Inherited from
Section titled “Inherited from”Promise.then