import { List, Union } from "ts-toolbelt"; /** * intersect all {@template Types} to one type * * * example : * Merge<[{ a:string }, {b:number}]> = { * a : 'a', * b : 1, * }; * */ declare type MergeTypes = Union.IntersectOf>; export default MergeTypes;