horojs
Version:
A micro library for a reactive UI application.
11 lines (10 loc) • 675 B
TypeScript
declare const insertionPrefix = "insert:";
declare const insertionPrefixLength: number;
declare const eventHandlingPrefix = "@";
declare const eventHandlingPrefixLength: number;
declare const attrsPrefix = "attrs:";
declare const attrsPrefixLength: number;
declare function isInsertionInsctruction(instruction: string): boolean;
declare function isEventHandlingInstruction(instruction: string): boolean;
declare function isAttrsInstruction(instruction: string): boolean;
export { insertionPrefix, insertionPrefixLength, eventHandlingPrefix, eventHandlingPrefixLength, attrsPrefix, attrsPrefixLength, isInsertionInsctruction, isEventHandlingInstruction, isAttrsInstruction };