UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

12 lines 327 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; } //# sourceMappingURL=IStoryBreadcrumb.d.ts.map