UNPKG

@plone/types

Version:

Plone's Types Package

11 lines (8 loc) 279 B
import { Brain } from '../services'; export interface ObjectBrowserItem extends Brain { // Although specified also in the Brain, they come from the serialization '@id': string; '@type': string; title: string; } export type objectBrowserHref = Array<ObjectBrowserItem>;