@openxmldev/linq-to-ooxml
Version:
OOXML Namespace-related Classes for LINQ to XML for TypeScript
23 lines (22 loc) • 812 B
TypeScript
import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml';
/**
* Declares XNamespace and XName fields for the `xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage"` namespace.
*/
export declare class PKG {
/**
* Defines the XML namespace associated with the `pkg` prefix.
*/
static readonly pkg: XNamespace;
/**
* Returns the namespace declaration `XAttribute` for this namespace.
*/
static get namespaceDeclaration(): XAttribute;
static readonly binaryData: XName;
static readonly compression: XName;
static readonly contentType: XName;
static readonly name_: XName;
static readonly package: XName;
static readonly padding: XName;
static readonly part: XName;
static readonly xmlData: XName;
}