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
17 lines (9 loc) • 321 B
TypeScript
import { BEAllProps, IEnhancement } from './ts-refs/be-enhanced/types';
export interface EndUserProps extends IEnhancement {
}
export interface AllProps extends EndUserProps {}
export type AP = AllProps;
export type PAP = Partial<AP>;
export type ProPAP = Promise<PAP>;
export interface Actions{
}