2024-12-08 08:58:57 +00:00
|
|
|
declare function _exports({ payload, dbFullName, updatedUserId, useLocal, dbSchema, }: {
|
2024-12-06 10:44:26 +00:00
|
|
|
payload: {
|
2024-12-08 08:58:57 +00:00
|
|
|
[x: string]: any;
|
2024-12-06 10:44:26 +00:00
|
|
|
};
|
|
|
|
dbFullName: string;
|
2024-12-08 08:58:57 +00:00
|
|
|
updatedUserId: string | number;
|
2024-12-06 11:55:03 +00:00
|
|
|
useLocal?: boolean;
|
2024-12-08 08:58:57 +00:00
|
|
|
dbSchema?: import("../../../types").DSQL_DatabaseSchemaType;
|
2024-12-06 10:44:26 +00:00
|
|
|
}): Promise<{
|
|
|
|
success: boolean;
|
2024-12-08 08:58:57 +00:00
|
|
|
payload?: any;
|
|
|
|
msg?: string;
|
2024-12-06 10:44:26 +00:00
|
|
|
}>;
|
|
|
|
export = _exports;
|