xylabs/sdk-react

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

Summary

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

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

export type { Enumeration }