mirror of
https://github.com/kitabisa/docker-slim-action.git
synced 2025-04-18 20:56:06 +00:00

* feat: cache the bin Signed-off-by: Dwi Siswanto <me@dw1.io> * feat: print error while get cache Signed-off-by: Dwi Siswanto <me@dw1.io> --------- Signed-off-by: Dwi Siswanto <me@dw1.io>
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
/**
|
|
* Indicates whether a pattern matches a path
|
|
*/
|
|
export declare enum MatchKind {
|
|
/** Not matched */
|
|
None = 0,
|
|
/** Matched if the path is a directory */
|
|
Directory = 1,
|
|
/** Matched if the path is a regular file */
|
|
File = 2,
|
|
/** Matched */
|
|
All = 3
|
|
}
|