Interface AttachmentFormData

interface AttachmentFormData {
    childNode?: Control<TypeAttributes>;
    label?: string;
    options?: AttachmentDialogOptions;
    pageModel?: PageModel | {
        id: string;
        type: string;
    };
    title?: string;
}

Properties

childNode?: Control<TypeAttributes>
label?: string

Use AttachmentDialogOptions.filesLabel instead.

pageModel?: PageModel | {
    id: string;
    type: string;
}
title?: string

Use AttachmentDialogOptions.dialogTitle instead.