@openxmldev/linq-to-ooxml
Version:
OOXML Namespace-related Classes for LINQ to XML for TypeScript
21 lines (20 loc) • 630 B
TypeScript
/**
* @author Thomas Barnekow
* @license MIT
*/
import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml';
/**
* Declares XNamespace and XName fields for the `xmlns:dcterms="http://purl.org/dc/terms/"` namespace.
*/
export declare class DCTERMS {
/**
* Defines the XML namespace associated with the `dcterms` prefix.
*/
static readonly dcterms: XNamespace;
/**
* Returns the namespace declaration `XAttribute` for this namespace.
*/
static get namespaceDeclaration(): XAttribute;
static readonly created: XName;
static readonly modified: XName;
}