docxml
Version:
TypeScript (component) library for building and parsing a DOCX file
14 lines (13 loc) • 607 B
TypeScript
/**
* Values that can be used as `uri` attributes of DrawingML ExtensionList children.
* @see {@link https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.extensionlist?view=openxml-2.8.1}
*/
export declare const extensionListUris: {
/** @see {@link https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.office2010.drawing.uselocaldpi?view=openxml-2.8.1} */
useLocalDpi: string;
/**
* Unfortunately this URI is not documented. There is also no official name
* for the extension it represents so we just call it 'svg'.
*/
svg: string;
};