mirror of
https://github.com/actions/setup-go
synced 2024-12-22 06:12:42 +00:00
8 lines
140 B
TypeScript
8 lines
140 B
TypeScript
export enum State {
|
|
CachePrimaryKey = 'CACHE_KEY',
|
|
CacheMatchedKey = 'CACHE_RESULT'
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = 'cache-hit'
|
|
}
|