13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
|
declare function _exports({ payload, dbFullName }: {
|
||
|
payload: {
|
||
|
id: string | number;
|
||
|
} & {
|
||
|
[x: string]: (string | number | null | undefined);
|
||
|
};
|
||
|
dbFullName: string;
|
||
|
}): Promise<{
|
||
|
success: boolean;
|
||
|
payload: any;
|
||
|
}>;
|
||
|
export = _exports;
|