UNPKG
calculate-items
Version:
latest (1.1.6)
1.1.6
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Items calculation template
calculate-items
/
dist
/
__tests__
/
utils
/
testCases.d.ts
11 lines
(10 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Item
,
Summary
}
from
'../../types/types'
;
declare
const
testCases
:
TestCaseObj
[];
export
default
testCases;
type
TestCaseObj
= {
input
:
string
;
summary
:
Summary
;
output
:
Item
[];
fails
?:
boolean
;
notValid
?:
boolean
; };