4 lines
211 B
TypeScript
4 lines
211 B
TypeScript
/* eslint @typescript-eslint/no-unused-vars: "off" -- There is a bug with this rule, it's not working properly with types */
|
|
type OsVersions = 'linux' | 'macos' | 'windows';
|
|
type ArchiveType = 'tar.gz' | 'zip';
|