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