import { ActionOnEventConfigs } from "trans-render/froop/types"; import {IBE} from 'be-enhanced/types'; export interface EndUserProps extends IBE{ readVerb: 'readAsText' | 'readAsDataURL' | 'readAsArrayBuffer' | 'readAsBinaryString'; } export interface AllProps extends EndUserProps{ fileContents: any[]; } export type AP = AllProps; export type PAP = Partial; export type ProPAP = Promise; export type POA = [PAP | undefined, ActionOnEventConfigs]; export interface Actions { //intro(proxy: Proxy, target: HTMLInputElement, beDecorProps: BeDecoratedProps): void; //finale(proxy: Proxy, target: HTMLInputElement, beDecorProps: BeDecoratedProps): void; }