Skip to content

Commit

Permalink
add config.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleAMathews committed Nov 18, 2024
1 parent 77a68ba commit 4b36367
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/nextjs-example/.sst/platform/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ import "./src/global.d.ts"
import "../types.generated"
import { AppInput, App, Config } from "./src/config"
import * as _neon from "@sst-provider/neon";
import * as _cloudflare from "@pulumi/cloudflare";
import * as _aws from "@pulumi/aws";
import * as _cloudflare from "@pulumi/cloudflare";


declare global {
// @ts-expect-error
export import neon = _neon
// @ts-expect-error
export import cloudflare = _cloudflare
// @ts-expect-error
export import aws = _aws
// @ts-expect-error
export import cloudflare = _cloudflare
interface Providers {
providers?: {
"neon"?: (_neon.ProviderArgs & { version?: string }) | boolean | string;
"cloudflare"?: (_cloudflare.ProviderArgs & { version?: string }) | boolean | string;
"aws"?: (_aws.ProviderArgs & { version?: string }) | boolean | string;
"cloudflare"?: (_cloudflare.ProviderArgs & { version?: string }) | boolean | string;
}
}
export const $config: (
Expand Down

0 comments on commit 4b36367

Please sign in to comment.