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
// Function Result Typeimporttype{StaticData}from"minista"exportasyncfunctiongetStaticData(): Promise<StaticData>{constapiUrl="http://localhost:5174/issues"constresponse=awaitfetch(apiUrl)constdata=awaitresponse.json()return{props: {issues: data,},}}
// Arrow Function Typeimporttype{GetStaticData}from"minista"exportconstgetStaticData: GetStaticData=async()=>{constapiUrl="http://localhost:5174/issues"constresponse=awaitfetch(apiUrl)constdata=awaitresponse.json()return{props: {issues: data,},}}
The text was updated successfully, but these errors were encountered:
getStaticDataに型情報がなかったので追加する。
The text was updated successfully, but these errors were encountered: