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