UNPKG

calculate-items

Version:

Items calculation template

11 lines (10 loc) 247 B
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; };