-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.d.ts
42 lines (38 loc) · 1.11 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// <reference types="node" />
import { FastifyPluginCallback, FastifyRequest } from 'fastify';
import { DataSource, QueryRunner } from 'typeorm';
declare module 'fastify' {
interface FastifyRequest {
/**
* typeorm dataSource queryRunner
*/
queryRunner: QueryRunner;
}
}
export interface FastifyTypeORMQueryRunnerOptions {
/**
* TypeORM dataSource
*/
dataSource: DataSource
/**
* Whether to bind the life cycle of a thing to a request
* Receiving requests: opening transaction
* Return response: close transaction
* Requesting an error: rolling back transaction
*/
transaction?: boolean
/**
* Only matching requests will enable the plugin
* @param request {FastifyRequest}
* @returns {boolean}
*/
match?: (request: FastifyRequest) => boolean
/**
* When the response matches the condition, it is considered an error
* @param respStr {string}
* @returns {boolean}
*/
respIsError?: (respStr: string) => boolean
}
declare const fastifyTypeORMQueryRunner: FastifyPluginCallback<FastifyTypeORMQueryRunnerOptions>;
export default fastifyTypeORMQueryRunner;