New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@types/issue-parser

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/issue-parser - npm Package Compare versions

Comparing version
3.0.0
to
3.0.1
+7
-7
issue-parser/index.d.ts

@@ -17,9 +17,9 @@ // Type definitions for issue-parser 3.0

[type: string]: ReadonlyArray<string>;
};
delimiters?: string | ReadonlyArray<string>;
mentionsPrefixes?: string | ReadonlyArray<string>;
issuePrefixes?: string | ReadonlyArray<string>;
hosts?: string | ReadonlyArray<string>;
issueURLSegments?: string | ReadonlyArray<string>;
overrides?: string | ReadonlyArray<string>;
} | undefined;
delimiters?: string | ReadonlyArray<string> | undefined;
mentionsPrefixes?: string | ReadonlyArray<string> | undefined;
issuePrefixes?: string | ReadonlyArray<string> | undefined;
hosts?: string | ReadonlyArray<string> | undefined;
issueURLSegments?: string | ReadonlyArray<string> | undefined;
overrides?: string | ReadonlyArray<string> | undefined;
}

@@ -26,0 +26,0 @@ type Options = "github" | "gitlab" | "bitbucket" | "waffle" | Overrides;

MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@types/issue-parser",
"version": "3.0.0",
"version": "3.0.1",
"description": "TypeScript definitions for issue-parser",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/issue-parser",
"license": "MIT",

@@ -14,11 +15,12 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/issue-parser"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "ebf6fb61eaa461781e7c22efe828aa81663b0f60fd09692c4f0ca2b197f78827",
"typeScriptVersion": "2.2"
"typesPublisherContentHash": "c4cc6414ff2015eb97e70292655fc64953022ee98aa02a12c77aabd113925601",
"typeScriptVersion": "3.6"
}

@@ -8,6 +8,65 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/issue-parser
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/issue-parser.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/issue-parser/index.d.ts)
````ts
// Type definitions for issue-parser 3.0
// Project: https://github.com/pvdlg/issue-parser#readme
// Definitions by: Leko <https://github.com/Leko>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
Additional Details
* Last updated: Fri, 21 Dec 2018 18:05:28 GMT
declare function issueParser(
authOptions?: issueParser.Options,
extension?: issueParser.Overrides
): issueParser.Parser;
declare namespace issueParser {
type Parser = (text: string) => Result;
interface Overrides {
actions?: {
[type: string]: ReadonlyArray<string>;
} | undefined;
delimiters?: string | ReadonlyArray<string> | undefined;
mentionsPrefixes?: string | ReadonlyArray<string> | undefined;
issuePrefixes?: string | ReadonlyArray<string> | undefined;
hosts?: string | ReadonlyArray<string> | undefined;
issueURLSegments?: string | ReadonlyArray<string> | undefined;
overrides?: string | ReadonlyArray<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]: ReadonlyArray<Action>;
}
interface Result {
refs: ReadonlyArray<Reference>;
mentions: ReadonlyArray<Mention>;
actions: Actions;
allRefs: Array<Reference | Action>;
}
}
export = issueParser;
````
### Additional Details
* Last updated: Thu, 08 Jul 2021 14:23:21 GMT
* Dependencies: none

@@ -17,2 +76,2 @@ * Global values: none

# Credits
These definitions were written by Leko <https://github.com/Leko>.
These definitions were written by [Leko](https://github.com/Leko).