bun-sqlite/dist/commands/admin/show-entries.d.ts

8 lines
207 B
TypeScript

import { Database } from "bun:sqlite";
type Params = {
db: Database;
tableName: string;
};
export default function showEntries({ db, tableName }: Params): Promise<"__exit__" | undefined>;
export {};