Closed SamVerschueren closed 5 years ago
@SamVerschueren Just Query
and Scan
or everything under /methods? Do you also want to shortcut inside of the lib which means I would also add index files in subfolders? Otherwise you just have to reexport in dynogo/index.ts. I can do this.
PR: https://github.com/SamVerschueren/dynongo/pull/72
Found one naming collision.
@devinmotion sorry, did not see your comment. I had already done something like this some time ago, just needed to finish it..
@bartcallant No problem. First come, first serve ;) Nicely done 👍 . I just left a comment to your PR. You may consider it.
Currently, the types for
Scan
andQuery
are not exposed in the main file. This means that you have to import them viaimport {Scan} from 'dynongo/src/lib/methods';
(or something). What we want is to be able to doimport {Scan} from 'dynongo';
.