@freelog/tools-lib 0.1.72 → 0.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -39,9 +39,10 @@ interface BatchContractsParamsType {
|
|
|
39
39
|
}
|
|
40
40
|
export declare function batchContracts(params: BatchContractsParamsType): Promise<any>;
|
|
41
41
|
interface TransitionRecordsParamsType {
|
|
42
|
+
contractId: string;
|
|
42
43
|
skip?: number;
|
|
43
44
|
limit?: number;
|
|
44
|
-
|
|
45
|
+
isTranslate?: 0 | 1;
|
|
45
46
|
}
|
|
46
47
|
export declare function transitionRecords({ contractId, ...params }: TransitionRecordsParamsType): Promise<any>;
|
|
47
48
|
export {};
|