storyblok-ts-client
Version:
Typescript library for working with Storyblok management API.
20 lines (18 loc) • 403 B
text/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
}