All files / src index.ts

100% Statements 11/11
100% Branches 0/0
100% Functions 0/0
100% Lines 11/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 239x 9x     9x   9x 9x 9x 9x 9x 9x   9x               9x  
import { InjectablesRegistry } from "./repository";
import { Injectables } from "@decaf-ts/injectable-decorators";
 
// overrides the previous Injectables registry to enable the @repository decorator
Injectables.setRegistry(new InjectablesRegistry());
 
export * from "./identity";
export * from "./interfaces";
export * from "./model";
export * from "./query";
export * from "./repository";
export * from "./utils";
//left to last on purpose
export * from "./persistence";
 
/**
 * @summary stores the current package version
 * @description this is how you should document a constant
 * @const VERSION
 * @memberOf module:core
 */
export const VERSION = "##VERSION##";