import {IEnhancement, BEAllProps} from '../trans-render/be/types'; export interface EndUserProps extends IEnhancement{ // //guid?: string; // //shareByID?: boolean; // enabled?: boolean; // beOosoom?: string; preferAttrForBareImports?: boolean; attached: boolean; } export interface AllProps extends EndUserProps{ exports?: Exports; } export type PAP = Partial; export type ProPAP = Promise export interface Actions{ hydrate(ap: AllProps): Promise; }