@emqx/shared-ui-utils 0.0.20 → 0.0.22
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/dist/hocon.d.ts +1 -1
- package/dist/index.js +721 -653
- package/dist/index.umd.cjs +28 -28
- package/dist/tools.d.ts +11 -0
- package/package.json +1 -1
package/dist/tools.d.ts
CHANGED
|
@@ -40,3 +40,14 @@ export declare const getBridgeKey: ({ type, name }: {
|
|
|
40
40
|
name: string;
|
|
41
41
|
}) => string;
|
|
42
42
|
export declare const checkNeedRequestAPI: (isChanged?: boolean) => boolean;
|
|
43
|
+
interface SQLKeywords {
|
|
44
|
+
fieldStr: string;
|
|
45
|
+
fromStr: string;
|
|
46
|
+
whereStr: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* If there is FOREACH in the SQL statement
|
|
50
|
+
* put the FOREACH and the following statements into the SELECT
|
|
51
|
+
*/
|
|
52
|
+
export declare const getKeywordsFromSQL: (sqlStr: string) => SQLKeywords;
|
|
53
|
+
export {};
|