uu-cubitt/common

View on GitHub
src/Dictionary.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Interface that represents a simple <string> to <any> dictionary.
 */
export interface Dictionary<T> {
    [K: string]: T;
}