/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { DocNode, IDocNodeParameters } from '@microsoft/tsdoc'; export interface DocAnchorParameters extends IDocNodeParameters { id: string; } export declare class DocAnchor extends DocNode { readonly id: string; constructor(parameters: DocAnchorParameters); /** @override */ readonly kind: string; } //# sourceMappingURL=docAnchor.d.ts.map