7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { Database } from "bun:sqlite";
|
|
type Params = {
|
|
db: Database;
|
|
};
|
|
export default function listTables({ db, }: Params): Promise<"__exit__" | void>;
|
|
export {};
|