Fix all lint errors

This commit is contained in:
2024-03-15 11:24:39 -05:00
parent af443bff96
commit fae92715b5
3 changed files with 24 additions and 4210 deletions

View File

@@ -11,7 +11,7 @@ export const flags = {
CF_BLOCKED: 'cf-blocked',
} as const;
export type Flags = typeof flags[keyof typeof flags];
export type Flags = (typeof flags)[keyof typeof flags];
export const targets = {
// browser with CORS restrictions
@@ -27,7 +27,7 @@ export const targets = {
ANY: 'any',
} as const;
export type Targets = typeof targets[keyof typeof targets];
export type Targets = (typeof targets)[keyof typeof targets];
export type FeatureMap = {
requires: Flags[];