Primewire

This commit is contained in:
2024-03-14 23:28:44 -05:00
parent 6bc765caed
commit 1fd98debc6
7 changed files with 4684 additions and 3 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[];