storyblok-ts-client
Version:
Typescript library for working with Storyblok management API.
19 lines • 497 B
TypeScript
import { IComponentSchema } from './IComponentSchema';
/**
* Interface of a pending Storyblok component.
*
* @export
* @interface IComponent
*/
export interface IPendingComponent {
name: string;
display_name?: string;
schema?: IComponentSchema;
image?: string | null;
preview_field?: string | null;
is_root?: boolean;
is_nestable?: boolean;
all_presets?: any[];
preset_id?: number | null;
}
//# sourceMappingURL=IPendingComponent.d.ts.map