/** * Interface to handle a forEach loop in lists */ export interface IForEachInterface { /** * Callback function */ (callback: T): void; } export default IForEachInterface;