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 @@ -3,7 +3,7 @@ on: pull_request
33
44jobs :
55 test :
6- runs-on : ubuntu-20.04
6+ runs-on : ubuntu-latest
77
88 steps :
99 # Check out, and set up the node/ruby infra
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