6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
|
declare function _exports({ userId, database }: {
|
||
|
userId: number;
|
||
|
database: string;
|
||
|
}): Promise<any>;
|
||
|
export = _exports;
|