qiskit-documentation/scripts/js/commands/declarations.d.ts

10 lines
217 B
TypeScript

type LinkExtractionResult = {
links: string[];
anchors: string[];
};
declare module "markdown-link-extractor" {
function markdownLinkExtractor(string): LinkExtractionResult;
export = markdownLinkExtractor;
}