6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
type Params = {
|
|
tableName: string;
|
|
};
|
|
export default function showFields({ tableName, }: Params): Promise<"__exit__" | void>;
|
|
export {};
|