@osaedasia/oresume
Version:
A user-friendly library for generating complete Single Page Applications (SPAs)
16 lines (15 loc) • 526 B
TypeScript
/**
* Manages attribute names used during HTML parsing process.
* These attributes serve as temporary markers for pattern matching and processing.
*/
export declare class ParserAttributes {
/**
* Base prefix used for all parsing-related attributes.
*/
static readonly tag: "op";
/**
* Temporary attribute marker applied to elements where patterns are detected.
* This attribute must be removed after fragment processing is complete.
*/
static readonly PATTERN: "data-op-pattern";
}