import {Reader} from 'readuz'; import {IEnv} from './env'; export interface IDictionary { [key: string]: T; } export type AnyVoidFn = (...args: any[]) => void; export type DIReader = Reader; export type Fn = (a: A) => B; export type PromiseFn = Fn>;