UNPKG
@jahed/sparql-engine
Version:
latest (0.14.0)
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.0
SPARQL query engine for servers and web browsers.
github.com/jahed/sparql-engine
jahed/sparql-engine
@jahed/sparql-engine
/
dist
/
operators
/
update
/
action-consumer.d.ts
10 lines
(9 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Consumable
}
from
"./consumer.ts"
;
/** * A consumer that executes a simple action */
export
default
class
ActionConsumer
<T>
extends
Consumable
<T> {
private
_action;
constructor
(
action
: () =>
void
);
execute
():
Promise
<
void
>; }