mirror of
https://github.com/ReCloudStudio/WebHooker.git
synced 2026-09-22 16:11:29 +00:00
chore: auto-fix lint & formatting [skip ci]
This commit is contained in:
parent
a77ac8ad91
commit
df16dc94f7
17 changed files with 142 additions and 125 deletions
19
app/types.ts
19
app/types.ts
|
|
@ -1,11 +1,4 @@
|
|||
export type FilterType =
|
||||
| "event"
|
||||
| "repo"
|
||||
| "actor"
|
||||
| "action"
|
||||
| "branch"
|
||||
| "keyword"
|
||||
| "field";
|
||||
export type FilterType = "event" | "repo" | "actor" | "action" | "branch" | "keyword" | "field";
|
||||
|
||||
export type FilterOp =
|
||||
| "eq"
|
||||
|
|
@ -267,7 +260,15 @@ export const FRAGMENT_PRESETS: FragmentPreset[] = [
|
|||
},
|
||||
];
|
||||
|
||||
export const FILTER_TYPES = ["event", "repo", "actor", "action", "branch", "keyword", "field"] as const;
|
||||
export const FILTER_TYPES = [
|
||||
"event",
|
||||
"repo",
|
||||
"actor",
|
||||
"action",
|
||||
"branch",
|
||||
"keyword",
|
||||
"field",
|
||||
] as const;
|
||||
|
||||
export const FILTER_OPS: FilterOp[] = [
|
||||
"eq",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue