Type Alias DucImageElement

DucImageElement: _DucElementBase & {
    crop: ImageCrop | null;
    fileId: ExternalFileId | null;
    filter: DucImageFilter | null;
    scaleFlip: [number, number];
    status: ImageStatus;
    type: "image";
}

Type declaration

  • crop: ImageCrop | null

    whether an element is cropped

  • fileId: ExternalFileId | null
  • filter: DucImageFilter | null
  • scaleFlip: [number, number]

    X and Y scale factors <-1, 1>, used for image axis flipping

  • status: ImageStatus

    whether respective file is persisted

  • type: "image"