type AreHtmlAddAttributeInstructionPayload = {
name: string;
content: string;
evaluate?: boolean;
};
type AreHtmlAddElementInstructionPayload = {
tag: string;
};
type AreHtmlAddTextInstructionPayload = {
/**
* Static string content or a dynamic getter function.
* When a function is provided, it receives the instruction instance
* and should return the current text value (used for interpolations).
*/
content: string;
evaluate?: boolean;
};
type AreHtmlAddCommentInstructionPayload = {
/**
* Static string content or a dynamic getter function.
* When a function is provided, it receives the instruction instance
* and should return the current text value (used for interpolations).
*/
content: string;
evaluate?: boolean;
};
type AreHtmlAddStyleInstructionPayload = {
/** Full CSS string to inject as a