1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

chore: fixes typecheck for arrow (#3317)

This commit is contained in:
Amir Raminfar
2024-10-08 09:39:52 -07:00
committed by GitHub
parent 5a890cbb94
commit 2d62257a33
4 changed files with 8 additions and 7 deletions

View File

@@ -29,7 +29,7 @@
<script setup lang="ts">
import { Container } from "@/models/Container";
import { Table } from "@apache-arrow/ts";
import { type Table } from "@apache-arrow/esnext-esm";
const { container } = defineProps<{ container: Container }>();
const query = ref("SELECT * FROM logs");
const error = ref<string | null>(null);