2024-12-08 08:58:57 +00:00
|
|
|
declare function _exports({ existingUser, database, additionalFields, useLocal, }: {
|
2024-12-06 10:44:26 +00:00
|
|
|
existingUser: {
|
|
|
|
[x: string]: any;
|
|
|
|
};
|
2024-12-09 11:45:39 +00:00
|
|
|
database?: string;
|
2024-12-06 10:44:26 +00:00
|
|
|
additionalFields?: string[];
|
2024-12-06 11:55:03 +00:00
|
|
|
useLocal?: boolean;
|
2024-12-08 08:58:57 +00:00
|
|
|
}): Promise<import("../../../types").APILoginFunctionReturn>;
|
2024-12-06 10:44:26 +00:00
|
|
|
export = _exports;
|