UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

9 lines (8 loc) 268 B
import { DIVESceneFileType } from '../../../types'; export default interface EXPORT_SCENE { DESCRIPTION: 'Exports the current scene to a blob and returns the URL.'; PAYLOAD: { type: keyof DIVESceneFileType; }; RETURN: Promise<string | null>; }