22 lines
510 B
TypeScript
22 lines
510 B
TypeScript
/* istanbul ignore file */
|
|
|
|
// Main
|
|
export * from './classes/TSinjex';
|
|
|
|
// Decorators
|
|
export * from './decorators/Inject';
|
|
export * from './decorators/Register';
|
|
export * from './decorators/RegisterInstance';
|
|
|
|
// Helper
|
|
export * from './helper/ImplementsStatic';
|
|
|
|
// Functions
|
|
export * from './functions/resolve';
|
|
export * from './functions/register';
|
|
|
|
// Interfaces & Types
|
|
export type * from './interfaces/ITSinjex';
|
|
export type * from './types/InitDelegate';
|
|
export type * from './types/GenericContructor';
|