UNPKG

@openxmldev/linq-to-ooxml

Version:

OOXML Namespace-related Classes for LINQ to XML for TypeScript

23 lines (22 loc) 692 B
/** * @author Thomas Barnekow * @license MIT */ import { XAttribute, XName, XNamespace } from '@openxmldev/linq-to-xml'; /** * Declares XNamespace and XName fields for the `xmlns:dc="http://purl.org/dc/elements/1.1/"` namespace. */ export declare class DC { /** * Defines the XML namespace associated with the `dc` prefix. */ static readonly dc: XNamespace; /** * Returns the namespace declaration `XAttribute` for this namespace. */ static get namespaceDeclaration(): XAttribute; static readonly creator: XName; static readonly description: XName; static readonly subject: XName; static readonly title: XName; }