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