@adonisjs/lucid
Version:
SQL ORM built on top of Active Record pattern
9 lines (8 loc) • 401 B
TypeScript
import { FactoryContextContract } from '../types/factory.js';
import { TransactionClientContract } from '../types/database.js';
export declare class FactoryContext implements FactoryContextContract {
isStubbed: boolean;
$trx: TransactionClientContract | undefined;
faker: import("@faker-js/faker").Faker;
constructor(isStubbed: boolean, $trx: TransactionClientContract | undefined);
}