mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-25 23:58:11 +08:00
934cc5c69b
* Added TS. Updated build and linting config. Added types. * [ts-migrate][.] Rename files from JS/JSX to TS/TSX Co-authored-by: ts-migrate <> * [ts-migrate][.] Run TS Migrate Co-authored-by: ts-migrate <> * Corrected files mangled by ts-migrate. * Updated lint config, minor linting. * Re-enabled Husky. * Updated tests and config. * Reverted webpack devtool config. * Removed obsolete snapshots. * Added annotations snap. * Updated tsconfig includes wrt linting. * Removed ts-migrate. Co-authored-by: Timmy Huang <tihuan@users.noreply.github.com>
16 lines
347 B
TypeScript
16 lines
347 B
TypeScript
/*
|
|
AnnoMatrix -- Annotated Matrix exported interface
|
|
|
|
Public API is defined in:
|
|
|
|
annoMatrix.js
|
|
viewCreators.js
|
|
crossfilter.js
|
|
|
|
*/
|
|
|
|
export { default as AnnoMatrixLoader } from "./loader";
|
|
export * from "./viewCreators";
|
|
export { default as AnnoMatrixObsCrossfilter } from "./crossfilter";
|
|
export { default as gcMiddleware } from "./middleware";
|