tensult/role-acl

View on GitHub
src/core/IDictionary.ts

Summary

Maintainability
A
0 mins
Test Coverage

/**
 *  An interface that defines dictionay type
 *  @interface
 *
 *  @author Dilip Kola <dilip@tensult.com>
 */
export interface IDictionary<T> {
    [key: string]: T;
}