feedsmith
Version:
Fast, all‑in‑one feed parser and generator for RSS, Atom, RDF, and JSON Feed, with support for Podcast, iTunes, Dublin Core, and OPML files.
19 lines • 444 B
text/typescript
//#region src/namespaces/rdf/common/types.d.ts
declare namespace RdfNs {
type About = {
about?: string;
};
/** @internal General RDF element kept for potential future use when all RDF data is needed. */
type Element = {
about?: string;
resource?: string;
id?: string;
nodeId?: string;
parseType?: string;
datatype?: string;
type?: string;
value?: Array<unknown>;
};
}
//#endregion
export { RdfNs };