File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -1632,20 +1632,20 @@ declare const peril: PerilDSL
16321632 * are wanting to introspect on whether a build has already failed.
16331633 */
16341634declare 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 >
You can’t perform that action at this time.
0 commit comments