10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
|
declare function _exports({ userId, database, newFields, newPayload, }: {
|
||
|
userId: number | string;
|
||
|
database: string;
|
||
|
newFields?: string[];
|
||
|
newPayload?: {
|
||
|
[x: string]: any;
|
||
|
};
|
||
|
}): Promise<any>;
|
||
|
export = _exports;
|