UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

12 lines (11 loc) 227 B
/** * Interface of an IStory's 'parent' property. * * @interface IStoryParent */ export interface IStoryParent { readonly id: number readonly slug: string readonly name: string readonly disable_fe_editor: boolean }