/** * Type defining what a DB query looks like. * @author Benedikt Arnarsson */ type Query = { [k in string]: any }; export default Query;