@websolute/faker.ts
Version:
Easy to Use, Powered by Decorators, Faker.js TypeScript Wrapper
10 lines (9 loc) • 430 B
TypeScript
import { Class } from './types/fixture-options.type';
import { ClassReflectionDto } from './types/class-reflection-dto.type';
export declare class ClassReflector {
static readonly REFLECTED_CLASSES: Record<string, ClassReflectionDto>;
private extractDecoratedProperties;
private static createPropertyDto;
private static extractFixtureDecoratorValue;
reflectClass(target: Class<unknown>): ClassReflectionDto;
}