import {IEnhancement, BEAllProps} from '../trans-render/be/types'; export interface EndUserProps extends IEnhancement{ forAll?: Array, base?: string, fileName?: string puntOn?: Array, } export interface AllProps extends EndUserProps{ forAll: Array, } export interface PuntEvent{ count: number, instance: Element, } export type AP = AllProps; export type PAP = Partial; export type ProPAP = Promise export interface Actions{ hydrate(self: AP & BEAllProps): PAP; //finale(): void; }