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
/
helpers
/
general.d.ts
9 lines
(8 loc)
•
206 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
function
createClass
(
name
:
string
): {
new
(): {}; };
type
Obj
= { [
x
:
string
]:
any
; };
export
declare
function
getDefinedMethods
(
object
:
Obj
,
methods
:
string
[]
):
string
[];
export
{};