File tree
Expand file treeCollapse file tree1 file changed
+2
-1
lines changed Expand file treeCollapse file tree1 file changed
+2
-1
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -28,7 +28,7 @@ export default function App() {
|
28 | 28 |
|
29 | 29 | /**
|
30 | 30 | * A simple SQL read-eval-print-loop
|
31 |
| -* @param {import("sql.js").Database} db |
| 31 | +* @param {{db: import("sql.js").Database}} props |
32 | 32 | */
|
33 | 33 | function SQLRepl({ db }) {
|
34 | 34 | const [error, setError] = useState(null);
|
@@ -72,6 +72,7 @@ function SQLRepl({ db }) {
|
72 | 72 |
|
73 | 73 | /**
|
74 | 74 | * Renders a single value of the array returned by db.exec(...) as a table
|
| 75 | +* @param {import("sql.js").QueryExecResult} props |
75 | 76 | */
|
76 | 77 | function ResultsTable({ columns, values }) {
|
77 | 78 | return (
|
|
You can’t perform that action at this time.
0 commit comments