UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

11 lines 285 B
/** * Generic interface of IStory's 'content' property. * * @interface IStoryContent */ export interface IStoryContent { readonly _uid?: string; readonly component: string; [fields: string]: any | IStoryContent[]; } //# sourceMappingURL=IStoryContent.d.ts.map