UNPKG

pptx-automizer-mp70

Version:
12 lines (11 loc) 581 B
import { XmlElement } from '../types/xml-types'; import { ImageStyle } from '../types/modify-types'; export default class ModifyImageHelper { /** * Update the "Target" attribute of a created image relation. * This will change the image itself. Load images with Automizer.loadMedia * @param filename name of target image in root template media folder. */ static setRelationTarget: (filename: string) => (element: XmlElement, arg1: XmlElement) => void; static setDuotoneFill: (duotoneParams: ImageStyle['duotone']) => (element: XmlElement) => void; }