6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
type Params = {
|
|
tableName: string;
|
|
};
|
|
export default function showEntries({ tableName }: Params): Promise<"__exit__" | undefined>;
|
|
export {};
|