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

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 {};