UNPKG
@armandabric/pdf-snapshot-matcher
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
PDF snapshot matcher
github.com/armandabric/pdf-snapshot
armandabric/pdf-snapshot
@armandabric/pdf-snapshot-matcher
/
src
/
jest.ts
13 lines
(10 loc)
•
301 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ toMatchPdfSnapshot,
type
Options
}
from
'./toMatchPdfSnapshot'
;
declare
global
{
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace
jest
{
interface
Matchers
<R> {
toMatchPdfSnapshot
(
options
?:
Options
):
Promise
<R>; } } }
export
{ toMatchPdfSnapshot };