innomize-typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
19 lines (18 loc) • 648 B
TypeScript
import { Subject } from "../Subject";
import { QueryRunner } from "../../query-runner/QueryRunner";
/**
* Executes subject operations for nested set tree entities.
*/
export declare class NestedSetSubjectExecutor {
protected queryRunner: QueryRunner;
constructor(queryRunner: QueryRunner);
/**
* Executes operations when subject is being inserted.
*/
insert(subject: Subject): Promise<void>;
/**
* Gets escaped table name with schema name if SqlServer or Postgres driver used with custom
* schema name, otherwise returns escaped table name.
*/
protected getTableName(tablePath: string): string;
}