xylabs/sdk-react

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

Summary

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

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

export type { Class }