14 lines
290 B
TypeScript
14 lines
290 B
TypeScript
type Param = {
|
|
userId: number;
|
|
database: string;
|
|
useLocal?: boolean;
|
|
payload?: {
|
|
[s: string]: any;
|
|
};
|
|
};
|
|
/**
|
|
* # Add User Table to Database
|
|
*/
|
|
export default function addUsersTableToDb({ userId, database, useLocal, payload, }: Param): Promise<any>;
|
|
export {};
|