-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Josh Gross
authored and
GitHub
committed
Nov 12, 2019
1 parent
fb50aa4
commit 4657a5f
Showing
3 changed files
with
12 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,14 @@ | ||
| /* eslint-disable @typescript-eslint/no-namespace */ | ||
| export namespace Inputs { | ||
| export const Key = "key"; | ||
| export const Path = "path"; | ||
| export const RestoreKeys = "restore-keys"; | ||
| export enum Inputs { | ||
| Key = "key", | ||
| Path = "path", | ||
| RestoreKeys = "restore-keys" | ||
| } | ||
|
|
||
| export namespace Outputs { | ||
| export const CacheHit = "cache-hit"; | ||
| export enum Outputs { | ||
| CacheHit = "cache-hit" | ||
| } | ||
|
|
||
| export namespace State { | ||
| export const CacheKey = "CACHE_KEY"; | ||
| export const CacheResult = "CACHE_RESULT"; | ||
| export enum State { | ||
| CacheKey = "CACHE_KEY", | ||
| CacheResult = "CACHE_RESULT" | ||
| } |