UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

17 lines (14 loc) 290 B
/* eslint-disable @typescript-eslint/no-explicit-any */ export interface DesignObject { type: string; [key: string]: any; } export interface Design { version: string; background: string; objects: DesignObject[]; } export interface Collaborator { id: string; name: string; }