@osaedasia/oresume
Version:
A user-friendly library for generating complete Single Page Applications (SPAs)
21 lines (20 loc) • 737 B
TypeScript
/**
* Defines attribute names used for identifying and managing Function-bound elements in the DOM.
* These attributes track elements with attached function handlers during runtime.
*/
export declare class FunctionAttributes {
/**
* Base prefix for all Function-specific attributes.
*/
static readonly tag: "ofu";
/**
* Attribute name storing the unique identifier of a function-bound element.
* Used to locate and manage specific function handlers in the DOM.
*/
static readonly ID: "ofu-id";
/**
* Attribute name storing the function name attached to an element.
* Used for identifying the bound function and debugging purposes.
*/
static readonly NAME: "ofu-name";
}