xylabs/sdk-react

View on GitHub
packages/rich-result/src/jsonld/Property.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable import/no-cycle */
import { Class } from './Class'
import { Enumeration } from './Enumeration'
import { Intangible } from './Intangible'

interface Property extends Intangible {
  domainIncludes?: Class
  inverseOf?: Property
  rangeIncludes?: Class
  supersededBy?: Class | Enumeration | Property
}

export type { Property }