UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

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