Skip to content

Commit 92d2525

Browse files
committed
Release 12.3.3
1 parent fd63c91 commit 92d2525

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "danger",
3-
"version": "12.3.2",
3+
"version": "12.3.3",
44
"description": "Unit tests for Team Culture",
55
"main": "distribution/danger.js",
66
"typings": "distribution/danger.d.ts",

source/danger.d.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1632,20 +1632,20 @@ declare const peril: PerilDSL
16321632
* are wanting to introspect on whether a build has already failed.
16331633
*/
16341634
declare const results: DangerRuntimeContainer
1635-
export declare type Pattern = string
1636-
export declare type Path = string
1637-
export declare type KeyedPatterns<T> = {
1635+
type Pattern = string
1636+
type Path = string
1637+
type KeyedPatterns<T> = {
16381638
readonly [K in keyof T]: Pattern[]
16391639
}
1640-
export declare type KeyedPaths<T> = {
1640+
type KeyedPaths<T> = {
16411641
readonly [K in keyof T]: Path[]
16421642
}
1643-
export declare type _MatchResult<T> = {
1643+
type _MatchResult<T> = {
16441644
readonly [K in keyof T]: boolean
16451645
}
1646-
export declare type MatchResult<T> = _MatchResult<T> & {
1646+
type MatchResult<T> = _MatchResult<T> & {
16471647
/** Returns an object containing arrays of matched files instead of the usual boolean values. */
16481648
getKeyedPaths(): KeyedPaths<T>
16491649
}
16501650
/** A vendored copy of the Chainsmoker module on NPM */
1651-
export declare type Chainsmoker<T> = (...patterns: Pattern[]) => MatchResult<T>
1651+
type Chainsmoker<T> = (...patterns: Pattern[]) => MatchResult<T>

0 commit comments

Comments
 (0)