import 'reflect-metadata'; /** * Get all decorators * @param target * @param properties */ export declare function getAllDecorators(target: any, properties: string[]): { propertyName: string; decorators: any[]; }[]; /** * List all methods in object * @param obj * @param inherited */ export declare function getMethods(obj: any, deep?: number): string[];