2024-12-06 11:55:03 +00:00
|
|
|
declare function _exports({ payload, dbFullName, useLocal, }: {
|
2024-12-06 10:44:26 +00:00
|
|
|
payload: {
|
|
|
|
id: string | number;
|
|
|
|
} & {
|
|
|
|
[x: string]: (string | number | null | undefined);
|
|
|
|
};
|
|
|
|
dbFullName: string;
|
2024-12-06 11:55:03 +00:00
|
|
|
useLocal?: boolean;
|
2024-12-06 10:44:26 +00:00
|
|
|
}): Promise<{
|
|
|
|
success: boolean;
|
|
|
|
payload: any;
|
|
|
|
}>;
|
|
|
|
export = _exports;
|