Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Components: fix input generic typing
Browse files Browse the repository at this point in the history
  • Loading branch information
fwang committed Sep 27, 2024
1 parent f2922ef commit 67d77ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/src/components/input.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import pulumi from "@pulumi/pulumi";
export type Input<T> = pulumi.Input<T>;
import type { Input as PulumiInput } from "@pulumi/pulumi";
export type Input<T> = PulumiInput<T>;

0 comments on commit 67d77ce

Please sign in to comment.