Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/xml_renderer/mod.ts>Props

An npm/browser module for easy matching XML and XPath to React Components and other stuff
Go to Latest
type alias Props
import { type Props } from "https://deno.land/x/xml_renderer@5.0.7/mod.ts";

The props/parameters passed into a rule component by the renderer.

Type Parameters

OutputGeneric
PropsGeneric extends { [key: string]: unknown; } | undefined
definition: { node: Node; traverse: (query?: string) => OutputGeneric[]; } & (PropsGeneric extends undefined ? { [key: string]: never; } : PropsGeneric)