ctod 0.1.0 → 0.1.1
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.
- package/package.json +1 -1
- package/types/lib/plugins.d.ts +0 -21
package/package.json
CHANGED
package/types/lib/plugins.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Broker35Plugin, Broker3Plugin } from './core/plugin';
|
|
2
|
-
/**
|
|
3
|
-
* @zh 一個基於印出 log 的 plugin。
|
|
4
|
-
* @en A plugin based on printing log.
|
|
5
|
-
*/
|
|
6
|
-
export declare const PrintLogPlugin: {
|
|
7
|
-
/**
|
|
8
|
-
* @zh 用於 Broker3 的版本。
|
|
9
|
-
* @en The version for Broker3.
|
|
10
|
-
*/
|
|
11
|
-
ver3: Broker3Plugin<() => {}>;
|
|
12
|
-
/**
|
|
13
|
-
* @zh 用於 Broker35 的版本。
|
|
14
|
-
* @en The version for Broker35.
|
|
15
|
-
*/
|
|
16
|
-
ver35: Broker35Plugin<() => {}>;
|
|
17
|
-
};
|
|
18
|
-
export declare const retryPlugin: Broker35Plugin<(yup: typeof import("yup")) => {
|
|
19
|
-
retry: import("yup").NumberSchema<number, import("yup").AnyObject, 1, "d">;
|
|
20
|
-
warn: import("yup").BooleanSchema<boolean, import("yup").AnyObject, true, "d">;
|
|
21
|
-
}>;
|