xylabs/sdk-react

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

Summary

Maintainability
A
0 mins
Test Coverage
import type { AggregateRating } from './AggregateRating.ts'
import type { ImageObject } from './ImageObject.ts'
import type { Intangible } from './Intangible.ts'
import type { Review } from './Review.ts'

export interface Brand extends Intangible {
  aggregateRating?: AggregateRating
  logo?: ImageObject | URL
  review?: Review
  slogan?: Text
}