@knodes/typedoc-pluginutils
Version:
A set of utilities for TypeDoc plugins
13 lines • 438 B
TypeScript
import { SourceMapLayer } from './source-map-layer';
export declare class SourceMapContainer {
private readonly _layers;
/**
* Create a new layer added to this container.
*
* @param label - The layer's label.
* @param originalText - The original text.
* @returns the new layer.
*/
addLayer(label: string, originalText: string): SourceMapLayer;
}
//# sourceMappingURL=source-map-container.d.ts.map