-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5a5476
commit 87dda06
Showing
7 changed files
with
79 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
const { default: t } = await import("../Variable/Environment.js"); | ||
export { t as Environment }; | ||
const{default:t}=await import("../Variable/Environment.js");export{t as Environment}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,28 @@ | ||
export declare const string: ( | ||
params?: | ||
| ({ | ||
errorMap?: import("zod").ZodErrorMap | undefined; | ||
invalid_type_error?: string | undefined; | ||
required_error?: string | undefined; | ||
description?: string | undefined; | ||
} & { | ||
coerce?: true | undefined; | ||
}) | ||
| undefined, | ||
) => import("zod").ZodString; | ||
declare const _default: import("zod").ZodObject< | ||
{ | ||
DISCORD_APPLICATION_ID: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_CLIENT_ID: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_CLIENT_SECRET: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_PUBLIC_KEY: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_TOKENS: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
}, | ||
"strip", | ||
import("zod").ZodTypeAny, | ||
{ | ||
DISCORD_APPLICATION_ID: string; | ||
DISCORD_CLIENT_ID: string; | ||
DISCORD_CLIENT_SECRET: string; | ||
DISCORD_PUBLIC_KEY: string; | ||
DISCORD_TOKENS: string; | ||
}, | ||
{ | ||
DISCORD_APPLICATION_ID?: string | undefined; | ||
DISCORD_CLIENT_ID?: string | undefined; | ||
DISCORD_CLIENT_SECRET?: string | undefined; | ||
DISCORD_PUBLIC_KEY?: string | undefined; | ||
DISCORD_TOKENS?: string | undefined; | ||
} | ||
>; | ||
export declare const string: (params?: ({ | ||
errorMap?: import("zod").ZodErrorMap | undefined; | ||
invalid_type_error?: string | undefined; | ||
required_error?: string | undefined; | ||
description?: string | undefined; | ||
} & { | ||
coerce?: true | undefined; | ||
}) | undefined) => import("zod").ZodString; | ||
declare const _default: import("zod").ZodObject<{ | ||
DISCORD_APPLICATION_ID: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_CLIENT_ID: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_CLIENT_SECRET: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_PUBLIC_KEY: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_TOKENS: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
}, "strip", import("zod").ZodTypeAny, { | ||
DISCORD_APPLICATION_ID: string; | ||
DISCORD_CLIENT_ID: string; | ||
DISCORD_CLIENT_SECRET: string; | ||
DISCORD_PUBLIC_KEY: string; | ||
DISCORD_TOKENS: string; | ||
}, { | ||
DISCORD_APPLICATION_ID?: string | undefined; | ||
DISCORD_CLIENT_ID?: string | undefined; | ||
DISCORD_CLIENT_SECRET?: string | undefined; | ||
DISCORD_PUBLIC_KEY?: string | undefined; | ||
DISCORD_TOKENS?: string | undefined; | ||
}>; | ||
export default _default; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,31 @@ | ||
declare const _default: { | ||
fetch( | ||
request: Request, | ||
{ | ||
DISCORD_PUBLIC_KEY, | ||
}?: { | ||
DISCORD_APPLICATION_ID: string; | ||
DISCORD_CLIENT_ID: string; | ||
DISCORD_CLIENT_SECRET: string; | ||
DISCORD_PUBLIC_KEY: string; | ||
DISCORD_TOKENS: string; | ||
}, | ||
): Promise<any>; | ||
fetch(request: Request, { DISCORD_PUBLIC_KEY }?: { | ||
DISCORD_APPLICATION_ID: string; | ||
DISCORD_CLIENT_ID: string; | ||
DISCORD_CLIENT_SECRET: string; | ||
DISCORD_PUBLIC_KEY: string; | ||
DISCORD_TOKENS: string; | ||
}): Promise<any>; | ||
}; | ||
export default _default; | ||
import type { Request } from "@cloudflare/workers-types"; | ||
export declare const Environment: import("zod").ZodObject< | ||
{ | ||
DISCORD_APPLICATION_ID: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_CLIENT_ID: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_CLIENT_SECRET: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_PUBLIC_KEY: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
DISCORD_TOKENS: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
}, | ||
"strip", | ||
import("zod").ZodTypeAny, | ||
{ | ||
DISCORD_APPLICATION_ID: string; | ||
DISCORD_CLIENT_ID: string; | ||
DISCORD_CLIENT_SECRET: string; | ||
DISCORD_PUBLIC_KEY: string; | ||
DISCORD_TOKENS: string; | ||
}, | ||
{ | ||
DISCORD_APPLICATION_ID?: string | undefined; | ||
DISCORD_CLIENT_ID?: string | undefined; | ||
DISCORD_CLIENT_SECRET?: string | undefined; | ||
DISCORD_PUBLIC_KEY?: string | undefined; | ||
DISCORD_TOKENS?: string | undefined; | ||
} | ||
>; | ||
export declare const Environment: import("zod").ZodObject<{ | ||
DISCORD_APPLICATION_ID: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_CLIENT_ID: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_CLIENT_SECRET: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_PUBLIC_KEY: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
DISCORD_TOKENS: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
}, "strip", import("zod").ZodTypeAny, { | ||
DISCORD_APPLICATION_ID: string; | ||
DISCORD_CLIENT_ID: string; | ||
DISCORD_CLIENT_SECRET: string; | ||
DISCORD_PUBLIC_KEY: string; | ||
DISCORD_TOKENS: string; | ||
}, { | ||
DISCORD_APPLICATION_ID?: string | undefined; | ||
DISCORD_CLIENT_ID?: string | undefined; | ||
DISCORD_CLIENT_SECRET?: string | undefined; | ||
DISCORD_PUBLIC_KEY?: string | undefined; | ||
DISCORD_TOKENS?: string | undefined; | ||
}>; | ||
export declare const Response: typeof import("@cloudflare/workers-types").Response; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.