UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

11 lines (9 loc) 301 B
import { type COMEntity } from '../../types'; export default interface SET_PARENT { DESCRIPTION: 'Attach an object to another object.'; PAYLOAD: { object: Partial<COMEntity> & { id: string }; parent: (Partial<COMEntity> & { id: string }) | null; }; RETURN: boolean; }