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
/
nop-consumer.d.ts
8 lines
(7 loc)
•
177 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Consumable
}
from
"./consumer.ts"
;
/** * A Consumer that does nothing */
export
default
class
NoopConsumer
<T>
extends
Consumable
<T> {
execute
():
Promise
<
void
>; }