/**
 * Common Interfaces
 *
 * Returns miscellaneous interfaces that are used throughout the application.
 */
export interface AssociativeArray {
    [key: string]: string | null;
}
