UNPKG
@sloughrey/mock-typeorm
Version:
latest (1.0.0)
1.0.0
Never hit the database again while testing
mock-typeorm-docs.vercel.app
@sloughrey/mock-typeorm
/
dist
/
types
/
constants
/
query-runner.d.ts
6 lines
(5 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
QueryRunner
}
from
"typeorm"
;
export
type
QueryRunnerMethods
= keyof { [K
in
keyof
QueryRunner
as
QueryRunner
[K]
extends
(...
args
:
any
[]) =>
any
? K :
never
]: K; };
export
declare
const
queryRunnerMethods
:
QueryRunnerMethods
[];