@types/issue-parser
Advanced tools
+10
-10
@@ -10,10 +10,10 @@ declare function issueParser( | ||
| actions?: { | ||
| [type: string]: ReadonlyArray<string>; | ||
| [type: string]: readonly 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; | ||
| 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; | ||
| } | ||
@@ -40,7 +40,7 @@ type Options = "github" | "gitlab" | "bitbucket" | "waffle" | Overrides; | ||
| interface Actions { | ||
| [action: string]: ReadonlyArray<Action>; | ||
| [action: string]: readonly Action[]; | ||
| } | ||
| interface Result { | ||
| refs: ReadonlyArray<Reference>; | ||
| mentions: ReadonlyArray<Mention>; | ||
| refs: readonly Reference[]; | ||
| mentions: readonly Mention[]; | ||
| actions: Actions; | ||
@@ -47,0 +47,0 @@ allRefs: Array<Reference | Action>; |
| { | ||
| "name": "@types/issue-parser", | ||
| "version": "3.0.4", | ||
| "version": "3.0.5", | ||
| "description": "TypeScript definitions for issue-parser", | ||
@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/issue-parser", | ||
| "dependencies": {}, | ||
| "typesPublisherContentHash": "9ba14d64dad6e5b3abbe7ef622d44e0d77fd1effc3ce420999b1273762a4347e", | ||
| "typesPublisherContentHash": "7facba37b15a8d819f5b82f00eaf24c795764a8452d1a42699f3e6037e5fec7d", | ||
| "typeScriptVersion": "4.5" | ||
| } |
+11
-11
@@ -20,10 +20,10 @@ # Installation | ||
| actions?: { | ||
| [type: string]: ReadonlyArray<string>; | ||
| [type: string]: readonly 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; | ||
| 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; | ||
| } | ||
@@ -50,7 +50,7 @@ type Options = "github" | "gitlab" | "bitbucket" | "waffle" | Overrides; | ||
| interface Actions { | ||
| [action: string]: ReadonlyArray<Action>; | ||
| [action: string]: readonly Action[]; | ||
| } | ||
| interface Result { | ||
| refs: ReadonlyArray<Reference>; | ||
| mentions: ReadonlyArray<Mention>; | ||
| refs: readonly Reference[]; | ||
| mentions: readonly Mention[]; | ||
| actions: Actions; | ||
@@ -66,3 +66,3 @@ allRefs: Array<Reference | Action>; | ||
| ### Additional Details | ||
| * Last updated: Tue, 07 Nov 2023 03:09:37 GMT | ||
| * Last updated: Mon, 20 Nov 2023 23:36:24 GMT | ||
| * Dependencies: none | ||
@@ -69,0 +69,0 @@ |
5466
-1.44%