UNPKG

wed

Version:

Wed is a schema-aware editor for XML documents.

20 lines (19 loc) 521 B
/** * Generates the HTML for an icon. The icon name can be any of: * * - ``"add"`` for actions that add content. * * - ``"delete"`` for actions that delete content. * * - ``"wrap"`` for actions that wrap content. * * - ``"unwrap"`` for actions that unwrap content. * * - ``"documentation"`` for actions that present documentation. * * - ``"any"`` for any action. * * @param name The name of the icon to create. * @returns The HTML for the icon. */ export declare function makeHTML(name: string): string;