Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@types/turndown
Advanced tools
npm install --save @types/turndown
This package contains type definitions for turndown (https://github.com/domchristie/turndown).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/turndown.
// Type definitions for turndown 5.0
// Project: https://github.com/domchristie/turndown
// Definitions by: Sergey Zhidkov <https://github.com/sergey-zhidkov>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.7
declare class TurndownService {
constructor(options?: TurndownService.Options)
addRule(key: string, rule: TurndownService.Rule): this;
keep(filter: TurndownService.Filter): this;
remove(filter: TurndownService.Filter): this;
use(plugins: TurndownService.Plugin | TurndownService.Plugin[]): this;
escape(str: string): string;
turndown(html: string | TurndownService.Node): string;
options: TurndownService.Options;
rules: TurndownService.Rules;
}
export = TurndownService;
declare namespace TurndownService {
interface Options {
headingStyle?: "setext" | "atx" | undefined;
hr?: string | undefined;
br?: string | undefined;
bulletListMarker?: "-" | "+" | "*" | undefined;
codeBlockStyle?: "indented" | "fenced" | undefined;
emDelimiter?: "_" | "*" | undefined;
fence?: "```" | "~~~" | undefined;
strongDelimiter?: "__" | "**" | undefined;
linkStyle?: "inlined" | "referenced" | undefined;
linkReferenceStyle?: "full" | "collapsed" | "shortcut" | undefined;
keepReplacement?: ReplacementFunction | undefined;
blankReplacement?: ReplacementFunction | undefined;
defaultReplacement?: ReplacementFunction | undefined;
}
interface Rule {
filter: Filter;
replacement?: ReplacementFunction | undefined;
}
interface Rules {
options: Options;
array: Rule[];
blankRule: ReplacementFunction;
defaultRule: ReplacementFunction;
keepReplacement: ReplacementFunction;
add(key: Filter, rule: Rule): void;
forEach(callback: (rule: Rule, index: number) => any): void;
forNode(node: Node): Rule;
keep(filter: Filter): void;
remove(filter: Filter): void;
}
type Plugin = (service: TurndownService) => void;
type Node = HTMLElement | Document | DocumentFragment;
type Filter = TagName | TagName[] | FilterFunction;
type FilterFunction = (node: HTMLElement, options: Options) => boolean;
type ReplacementFunction = (
content: string,
node: Node,
options: Options,
) => string;
type TagName = keyof HTMLElementTagNameMap;
}
These definitions were written by Sergey Zhidkov.
FAQs
TypeScript definitions for turndown
The npm package @types/turndown receives a total of 145,659 weekly downloads. As such, @types/turndown popularity was classified as popular.
We found that @types/turndown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.