UNPKG

@webuildbots/webuildbots-sdk

Version:
16 lines (15 loc) 387 B
import { BlockTypes } from '../const/block-enums'; export interface BlockFormState { _id: string; blockVersion: number; blockId: string; content: any; created: string; defaultChoice?: any; function?: any; group: string; meta: any; name: string; type: BlockTypes.TEXT | BlockTypes.COMPLEX | BlockTypes.MEDIA | undefined; version: number; }