xylabs/sdk-react

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

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable import/no-cycle */
import { CreativeWork } from './CreativeWork'
import { MapCategoryType } from './MapCategoryType'

interface Map extends CreativeWork {
  mapType?: MapCategoryType
}

export type { Map }