8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import { Database } from "bun:sqlite";
|
|
type Params = {
|
|
db: Database;
|
|
tableName: string;
|
|
};
|
|
export default function showEntries({ db, tableName }: Params): Promise<void>;
|
|
export {};
|