/** * Interface to handle a forEach loop in dictionaries */ export interface IForEachInterface { /** * Callback function */ (callback: { key: K; value: V; }): void; } export default IForEachInterface;