File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " danger" ,
3
- "version" : " 12.3.2 " ,
3
+ "version" : " 12.3.3 " ,
4
4
"description" : " Unit tests for Team Culture" ,
5
5
"main" : " distribution/danger.js" ,
6
6
"typings" : " distribution/danger.d.ts" ,
Original file line number Diff line number Diff line change @@ -1632,20 +1632,20 @@ declare const peril: PerilDSL
1632
1632
* are wanting to introspect on whether a build has already failed.
1633
1633
*/
1634
1634
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 > = {
1638
1638
readonly [ K in keyof T ] : Pattern [ ]
1639
1639
}
1640
- export declare type KeyedPaths < T > = {
1640
+ type KeyedPaths < T > = {
1641
1641
readonly [ K in keyof T ] : Path [ ]
1642
1642
}
1643
- export declare type _MatchResult < T > = {
1643
+ type _MatchResult < T > = {
1644
1644
readonly [ K in keyof T ] : boolean
1645
1645
}
1646
- export declare type MatchResult < T > = _MatchResult < T > & {
1646
+ type MatchResult < T > = _MatchResult < T > & {
1647
1647
/** Returns an object containing arrays of matched files instead of the usual boolean values. */
1648
1648
getKeyedPaths ( ) : KeyedPaths < T >
1649
1649
}
1650
1650
/** 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 >
You can’t perform that action at this time.
0 commit comments