UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

12 lines (11 loc) 258 B
/** * Interface of an IStory's 'breadcrumbs' array property member. * * @interface IStoryBreadcrumb */ export interface IStoryBreadcrumb { readonly id: number readonly name: string readonly parent_id: number readonly disable_fe_editor: boolean }