@dekkai/data-source
Version:
Data source wrapper for local and remote files. Works on browsers, node.js and deno.
15 lines (13 loc) • 572 B
text/typescript
/*
* Import the deno runtime declarations.
* Unfortunately we have to re-enable the default libs here because the deno runtime declaration file disables them by
* using `/// <reference no-default-lib="true"/>` at the top of he file.
* What this means is that anything declared inside the `lib` section of the `tsconfig.json` file will be ignored.
*/
/// <reference types="./deno_runtime" />
/// <reference lib="esnext" />
/// <reference lib="dom" />
/// <reference lib="webworker" />
export * from './types';
export * from './file/mod';
export * from './chunk/mod';