infinum/mobx-collection-store

View on GitHub
src/interfaces/IReferences.ts

Summary

Maintainability
A
0 mins
Test Coverage
import IExternalRef from './IExternalRef';
import IType from './IType';

/**
 * Model references mapping interface
 *
 * @interface IReferences
 */
interface IReferences {
  [name: string]: IType|IExternalRef;
}

export default IReferences;