# Installation > `npm install --save @types/markdown-escape` # Summary This package contains type definitions for markdown-escape (https://github.com/kemitchell/markdown-escape.js). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/markdown-escape. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/markdown-escape/index.d.ts) ````ts type CharacterSets = [ "asterisks", "number signs", "slashes", "parentheses", "parentheses", "square brackets", "square brackets", "angle brackets", "angle brackets", "underscores", ]; declare namespace markdownEscape { type CharacterSet = CharacterSets[number]; } declare function markdownEscape(string: string, skips?: markdownEscape.CharacterSet[]): string; export = markdownEscape; ```` ### Additional Details * Last updated: Tue, 07 Nov 2023 09:09:39 GMT * Dependencies: none # Credits These definitions were written by [Christoph Thiede](https://github.com/LinqLover).