本文整理匯總了TypeScript中drafts/tasks/claimAmount.ClaimAmount類的典型用法代碼示例。如果您正苦於以下問題:TypeScript ClaimAmount類的具體用法?TypeScript ClaimAmount怎麽用?TypeScript ClaimAmount使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ClaimAmount類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: buildPrepareYourClaimSection
static buildPrepareYourClaimSection (draft: DraftClaim): TaskList {
return new TaskList('Prepare your claim', [
new TaskListItem('Completing your claim', Paths.completingClaimPage.uri, CompletingYourClaim.isCompleted(draft)),
new TaskListItem('Your details', Paths.claimantPartyTypeSelectionPage.uri, YourDetails.isCompleted(draft)),
new TaskListItem('Their details', Paths.defendantPartyTypeSelectionPage.uri, TheirDetails.isCompleted(draft)),
new TaskListItem('Claim amount', Paths.amountPage.uri, ClaimAmount.isCompleted(draft)),
new TaskListItem('Claim details', Paths.reasonPage.uri, ClaimDetails.isCompleted(draft))
])
}
示例2: it
it('should return false if interest type has not been set', () => {
const input = {
amount: {
rows: [{
reason: 'Bills',
amount: 0
}]
}
}
const claim: DraftClaim = new DraftClaim().deserialize(input)
expect(ClaimAmount.isCompleted(claim)).to.equal(false)
})