UNPKG

200 BTypeScriptView Raw
1import { TagImplOptions } from './tag-impl-options';
2export declare class TagMap {
3 private impls;
4 get(name: string): TagImplOptions;
5 set(name: string, impl: TagImplOptions): void;
6}