@webuildbots/webuildbots-sdk
Version:
webuildbots sdk
16 lines (15 loc) • 387 B
TypeScript
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;
}