UNPKG

755 BTypeScriptView Raw
1/**
2 * Binding tags for repository related bindings
3 */
4export declare namespace RepositoryTags {
5 /**
6 * Tag for model class bindings
7 */
8 const MODEL = "model";
9 /**
10 * Tag for repository bindings
11 */
12 const REPOSITORY = "repository";
13 /**
14 * Tag for datasource bindings
15 */
16 const DATASOURCE = "datasource";
17}
18/**
19 * Binding keys and namespaces for repository related bindings
20 */
21export declare namespace RepositoryBindings {
22 /**
23 * Namespace for model class bindings
24 */
25 const MODELS = "models";
26 /**
27 * Namespace for repository bindings
28 */
29 const REPOSITORIES = "repositories";
30 /**
31 * Namespace for datasource bindings
32 */
33 const DATASOURCES = "datasources";
34}