UNPKG

be-enhanced

Version:

be-enhanced provides a base class that enables casting spells, or enhancing server-rendered DOM elements based on cross-cutting custom attributes

20 lines (13 loc) 374 B
import { BEAllProps, IEnhancement } from '../be-enhanced/types'; export interface EndUserProps extends IEnhancement { } export interface AP extends EndUserProps{ queue?: Array<any>, itemCE?: string, cnt?: number, ref?: WeakRef<Element>, } export type PAP = Partial<AP>; export type ProPAP = Promise<PAP>; export interface Actions{ }