manifest
Version:
The backend for AI code editors
16 lines (15 loc) • 416 B
TypeScript
import { ImageSizesObject, PropType } from '../../../../types/src';
export interface EntityTsTypeInfo {
name: string;
properties: PropertyTsTypeInfo[];
nested?: boolean;
}
export interface PropertyTsTypeInfo {
name: string;
type: string | object;
manifestPropType?: PropType;
isRelationship?: boolean;
optional?: boolean;
values?: string[] | null;
sizes?: ImageSizesObject;
}