storyblok-ts-client
Version:
Typescript library for working with Storyblok management API.
23 lines • 583 B
TypeScript
import { IStoryContent } from './IStoryContent';
/**
* Interface of a pending story info object.
*
* @export
* @interface IPendingStory
*/
export interface IPendingStory {
name: string;
parent_id?: number;
group_id?: string;
sort_by_date?: boolean | null;
tag_list?: string[];
is_folder?: boolean;
content?: IStoryContent;
slug: string;
path?: string | null;
default_root?: string | null;
disble_fe_editor?: boolean;
is_startpage?: boolean;
pinned?: boolean;
}
//# sourceMappingURL=IPendingStory.d.ts.map