/*export function checkStringDict (mixed : any) : {} { const keys = Object.keys(mixed); for (let k of keys) { if (mixed.hasOwnProperty(k)) { if (typeof mixed[k] != "string") { //Error } } } } */