Skip to main content
Module

x/ts_morph/mod.ts>JsxAttribute

TypeScript Compiler API wrapper for static analysis and programmatic code changes.
Very Popular
Go to Latest
class JsxAttribute
extends JsxAttributeBase<ts.JsxAttribute>
import { JsxAttribute } from "https://deno.land/x/ts_morph@15.1.0/mod.ts";

Methods

Gets the JSX attribute's initializer or returns undefined if it doesn't exist.

Gets the JSX attribute's initializer or throws if it doesn't exist.

getParent(): NodeParentType<ts.JsxAttribute>
getParentOrThrow(): NonNullable<NodeParentType<ts.JsxAttribute>>

Gets the structure equivalent to this node.

remove(): void

Removes the JSX attribute.

Removes the initializer.

set(structure: Partial<JsxAttributeStructure>): this

Sets the node from a structure.

setInitializer(textOrWriterFunction: string | WriterFunction): this

Sets the initializer.