Data interface for the type of an actor run result.

interface IActorRdfUpdateQuadsOutput {
    execute: (() => Promise<void>);
}

Hierarchy (view full)

Properties

Properties

execute: (() => Promise<void>)

Async function that resolves when the update operation is done.

Type declaration

    • (): Promise<void>
    • Returns Promise<void>