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 23 | 9x 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##"; |