mirror of
https://github.com/bendtherules/github-delete-unused-repos.git
synced 2026-08-18 22:02:57 +00:00
Fix FilterStatus enum values
This commit is contained in:
+4
-4
@@ -26,9 +26,9 @@ export enum FilterSteps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum FilterStatus {
|
export enum FilterStatus {
|
||||||
'pass',
|
pass = 'pass',
|
||||||
'fail',
|
fail = 'fail',
|
||||||
'waiting',
|
waiting = 'waiting',
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface RepoFilterState {
|
export interface RepoFilterState {
|
||||||
@@ -59,7 +59,7 @@ export type RepoFilterStateMap = Map<
|
|||||||
{
|
{
|
||||||
filterState: RepoFilterState;
|
filterState: RepoFilterState;
|
||||||
}
|
}
|
||||||
>;
|
>;
|
||||||
|
|
||||||
export interface ApplicationState {
|
export interface ApplicationState {
|
||||||
username: string;
|
username: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user