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
19 lines (11 loc) • 356 B
TypeScript
import {IEnhancement, BEAllProps} from '../trans-render/be/types';
export interface EndUserProps extends IEnhancement<HTMLScriptElement>{
}
export interface AllProps extends EndUserProps{
value: any,
}
export type AP = AllProps;
export type PAP = Partial<AP>;
export type ProPAP = Promise<PAP>;
export interface Actions{
}