xylabs/sdk-react

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

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable import/no-cycle */

import { Intangible } from './Intangible'
import { SoftwareApplication } from './SoftwareApplication'
import { Text } from './Text'
import { URL } from './URL'

interface EntryPoint extends Intangible {
  actionApplication?: SoftwareApplication
  actionPlatform?: Text | URL
  contentType?: Text
  encodingType?: Text
  httpMethod?: Text
  urlTemplate?: Text
}

export type { EntryPoint }