
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@types/issue-parser
Advanced tools
TypeScript definitions for issue-parser
npm install --save @types/issue-parser
This package contains type definitions for issue-parser (https://github.com/pvdlg/issue-parser#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/issue-parser.
declare function issueParser(
authOptions?: issueParser.Options,
extension?: issueParser.Overrides,
): issueParser.Parser;
declare namespace issueParser {
type Parser = (text: string) => Result;
interface Overrides {
actions?: {
[type: string]: readonly string[];
} | undefined;
delimiters?: string | readonly string[] | undefined;
mentionsPrefixes?: string | readonly string[] | undefined;
issuePrefixes?: string | readonly string[] | undefined;
hosts?: string | readonly string[] | undefined;
issueURLSegments?: string | readonly string[] | undefined;
overrides?: string | readonly string[] | undefined;
}
type Options = "github" | "gitlab" | "bitbucket" | "waffle" | Overrides;
interface Reference {
raw: string;
slug: string | undefined;
prefix: string | undefined;
issue: string;
}
interface Mention {
raw: string;
prefix: string;
user: string;
}
interface Action {
raw: string;
action: string;
slug: string | undefined;
prefix: string | undefined;
issue: string;
}
interface Actions {
[action: string]: readonly Action[];
}
interface Result {
refs: readonly Reference[];
mentions: readonly Mention[];
actions: Actions;
allRefs: Array<Reference | Action>;
}
}
export = issueParser;
These definitions were written by Leko.
FAQs
TypeScript definitions for issue-parser
The npm package @types/issue-parser receives a total of 3,851 weekly downloads. As such, @types/issue-parser popularity was classified as popular.
We found that @types/issue-parser demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.