Skip to content

Commit

Permalink
초기 상태값의 타입 추론 비활성화
Browse files Browse the repository at this point in the history
  • Loading branch information
CirnoV committed Nov 20, 2024
1 parent dc6d81d commit 5a14f2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/interactive-docs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ export function createInteractiveDoc<
hybrid?: CodeExmapleMap<Params, Sections, HybridLanguage>;
};
pgOptions: PgOptions;
initialParams: Params;
initialSelectedExample:
| [frontend: FrontendLanguage, backend: BackendLanguage]
| HybridLanguage;
initialParams: NoInfer<Params>;
initialSelectedExample: NoInfer<
[frontend: FrontendLanguage, backend: BackendLanguage] | HybridLanguage
>;
preview: Component;
}): {
InteractiveDoc: ParentComponent;
Expand Down

0 comments on commit 5a14f2c

Please sign in to comment.