datasquirel/package-shared/functions/backend/updateUsersTableSchema.d.ts

10 lines
240 B
TypeScript
Raw Normal View History

2024-12-08 08:58:57 +00:00
declare function _exports({ userId, database, newFields, newPayload, }: {
userId: number | string;
database: string;
newFields?: string[];
newPayload?: {
[x: string]: any;
};
}): Promise<any>;
export = _exports;