// Used for named bindings export const NAMED_TAG = 'named'; // The name of the target at design time export const INJECT_TAG = 'inject'; // used to store constructor arguments tags export const TAGGED = 'injection:tagged'; // used to store class properties tags export const TAGGED_PROP = 'injection:tagged_props'; // used to store class to be injected export const TAGGED_CLS = 'injection:tagged_class'; // used to store function to be injected export const TAGGED_FUN = 'injection:tagged_function'; export const OBJ_DEF_CLS = 'injection:object_definition_class';