Skip to content

Commit a7b2b02

Browse files
committed
exclude types from coverage
1 parent 8f2790d commit a7b2b02

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.nycrc.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
],
99
"exclude": [
1010
"cypress/**/*.*",
11+
"src/types.ts",
1112
"**/*.d.ts",
1213
"**/*.cy.tsx",
1314
"**/*.cy.ts"

src/types/index.ts src/types.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { CloseButtonProps, IconProps } from '../components';
2+
import { CloseButtonProps, IconProps } from './components';
33

44
type Nullable<T> = {
55
[P in keyof T]: T[P] | null;
@@ -278,12 +278,6 @@ export interface ToastContainerProps extends CommonOptions {
278278
*/
279279
toastClassName?: ToastClassName;
280280

281-
/**
282-
* Show the toast only if it includes containerId and it's the same as containerId
283-
* `Default: false`
284-
*/
285-
enableMultiContainer?: boolean;
286-
287281
/**
288282
* Limit the number of toast displayed at the same time
289283
*/

0 commit comments

Comments
 (0)