UNPKG

@plone/types

Version:

Plone's Types Package

16 lines (13 loc) 285 B
interface Vocabularies { '@id': string; title: string; } export interface GetVocabulariesListResponse extends Array<Vocabularies> {} export interface GetVocabulariesResponse { '@id': string; items: Array<{ title: string; token: string; }>; items_total: number; }