Added IP_LOCKED flag amonst other things requested by mrjvs

This commit is contained in:
MemeCornucopia
2023-12-14 12:40:01 -05:00
parent f3720161ac
commit 671c558c55
7 changed files with 45 additions and 17 deletions

View File

@@ -1,5 +1,6 @@
export const flags = {
NO_CORS: 'no-cors',
IP_LOCKED: 'ip-locked',
} as const;
export type Flags = (typeof flags)[keyof typeof flags];