UNPKG
jest-mock-external-components
Version:
latest (3.0.1)
3.0.1
3.0.0
2.0.1
2.0.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Mock external React components with jest
asvetliakov/jest-mock-external-components
jest-mock-external-components
/
build
/
get_mocks.d.ts
7 lines
(6 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
interface
Mock
{
identifier
:
string
;
path
:
string
;
type
:
"namespace"
|
"name"
|
"default"
; }
export
declare
function
getMocks
(
code
:
string
,
type
:
"flow"
|
"typescript"
,
alwaysMock
?:
string
[]
):
Mock
[];