We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79e3942 commit a16ff26Copy full SHA for a16ff26
packages/plugin-goplus/src/lib/GoPlusManage.ts
@@ -1,6 +1,6 @@
1
2
3
-export const GoPlusTypeEnum = {
+export const GoPlusType = {
4
EVMTOKEN_SECURITY_CHECK: "EVMTOKEN_SECURITY_CHECK",
5
SOLTOKEN_SECURITY_CHECK: "SOLTOKEN_SECURITY_CHECK",
6
SUITOKEN_SECURITY_CHECK: "SUITOKEN_SECURITY_CHECK",
@@ -15,7 +15,7 @@ export const GoPlusTypeEnum = {
15
URL_SECURITY_CHECK: "URL_SECURITY_CHECK",
16
} as const;
17
18
-export type GoPlusType = (typeof GoPlusTypeEnum)[keyof typeof GoPlusTypeEnum];
+export type GoPlusTypeType = (typeof GoPlusTypeEnum)[keyof typeof GoPlusType];
19
20
export type GoPlusParamType = {
21
"type": GoPlusType,
0 commit comments