@web3-storage/content-claims
Version:
Implementation of the Content Claims Protocol.
11 lines (9 loc) • 655 B
text/typescript
import * as ucanto from '@ucanto/interface'
import { assert, equals, inclusion, index, location, partition, relation } from './assert.js'
export type Assert = ucanto.InferInvokedCapability<typeof assert>
export type AssertInclusion = ucanto.InferInvokedCapability<typeof inclusion>
export type AssertIndex = ucanto.InferInvokedCapability<typeof index>
export type AssertLocation = ucanto.InferInvokedCapability<typeof location>
export type AssertPartition = ucanto.InferInvokedCapability<typeof partition>
export type AssertRelation = ucanto.InferInvokedCapability<typeof relation>
export type AssertEquals = ucanto.InferInvokedCapability<typeof equals>