export interface GlobMap { [key: string]: T; } export default class GlobTable { private map; constructor(map: GlobMap); lookup(key: string): T[]; }