You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make them work in a non Alloy environment. Otherwise typescript doesn't see merged typekit declaration and missing all http typekits.
This should be either documented or exposed and working with http module import.
Reproduction
import{getHttpOperation}from"@typespec/http";import{$}from"@typespec/compiler/typekit";// import "@typespec/http/experimental/typekit"; // uncomment to make this workconst[httpOperation]=getHttpOperation(program,operation);$(program).httpOperation.flattenResponses(httpOperation);