matthew-matvei/freeman

View on GitHub
src/interfaces/models/IKeyMap.ts

Summary

Maintainability
A
0 mins
Test Coverage
/** Defines the key map object read from settings. */
interface IKeyMap {
    [key: string]: string[];
}

export default IKeyMap;