mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 18:13:25 +00:00
Fix all lint errors
This commit is contained in:
@@ -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[];
|
||||
|
Reference in New Issue
Block a user