@sanctumso/inf1 0.0.1-dev-8 → 0.0.1-dev-9
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/index.d.ts +1 -13
- package/index.js +1 -1
- package/index_bg.wasm +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -112,19 +112,7 @@ export type InfErrMsg = `${InfErr}${ERR_CODE_MSG_SEP}${string}`;
|
|
|
112
112
|
*/
|
|
113
113
|
export type InfErr = "AccDeserErr" | "InternalErr" | "MissingAccErr" | "MissingSplDataErr" | "MissingSvcDataErr" | "NoValidPdaErr" | "PoolErr" | "UnknownPpErr" | "UnknownSvcErr" | "UnsupportedMintErr" | "SizeTooSmallErr" | "SizeTooLargeErr";
|
|
114
114
|
|
|
115
|
-
export type AllInfErrs = [
|
|
116
|
-
"AccDeserErr",
|
|
117
|
-
"InternalErr",
|
|
118
|
-
"MissingAccErr",
|
|
119
|
-
"MissingSplDataErr",
|
|
120
|
-
"MissingSvcDataErr",
|
|
121
|
-
"NoValidPdaErr",
|
|
122
|
-
"PoolErr",
|
|
123
|
-
"UnknownSvcErr",
|
|
124
|
-
"UnsupportedMintErr",
|
|
125
|
-
"SizeTooSmallErr",
|
|
126
|
-
"SizeTooLargeErr",
|
|
127
|
-
];
|
|
115
|
+
export type AllInfErrs = InfErr[];
|
|
128
116
|
|
|
129
117
|
export interface RebalanceQuoteArgs {
|
|
130
118
|
/**
|