├── .changeset ├── README.md └── config.json ├── .eslintrc.js ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data-model.d.ts ├── dataset.d.ts ├── index.d.ts ├── package.json ├── query.d.ts ├── query ├── common.d.ts └── queryable.d.ts ├── rdf-js-query-tests.ts ├── rdf-js-tests.ts ├── stream.d.ts └── tsconfig.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/README.md -------------------------------------------------------------------------------- /data-model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/data-model.d.ts -------------------------------------------------------------------------------- /dataset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/dataset.d.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/package.json -------------------------------------------------------------------------------- /query.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/query.d.ts -------------------------------------------------------------------------------- /query/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/query/common.d.ts -------------------------------------------------------------------------------- /query/queryable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/query/queryable.d.ts -------------------------------------------------------------------------------- /rdf-js-query-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/rdf-js-query-tests.ts -------------------------------------------------------------------------------- /rdf-js-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/rdf-js-tests.ts -------------------------------------------------------------------------------- /stream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/stream.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdfjs/types/HEAD/tsconfig.json --------------------------------------------------------------------------------