1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

[with-typescript] Fixed incorrect query type (#6238)

This commit is contained in:
Resi Respati 2019-02-11 16:32:10 +07:00 committed by Tim Neutkens
parent 8ddf9c7f27
commit 3746d7d90b
2 changed files with 2 additions and 1 deletions

View file

@ -6,7 +6,7 @@ import { findData } from '../utils/sample-api'
import ListDetail from '../components/ListDetail';
type RequestQuery = {
id: number,
id: string,
}
type Props = {

View file

@ -7,6 +7,7 @@
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"noUnusedLocals": true,