UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

14 lines (13 loc) 337 B
import { 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; }