kamino-sdk-beta
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
32 lines • 896 B
TypeScript
import * as types from "../types";
import * as borsh from "@coral-xyz/borsh";
export interface V0JSON {
kind: "V0";
}
export declare class V0 {
static readonly discriminator = 0;
static readonly kind = "V0";
readonly discriminator = 0;
readonly kind = "V0";
toJSON(): V0JSON;
toEncodable(): {
V0: {};
};
}
export interface V1JSON {
kind: "V1";
}
export declare class V1 {
static readonly discriminator = 1;
static readonly kind = "V1";
readonly discriminator = 1;
readonly kind = "V1";
toJSON(): V1JSON;
toEncodable(): {
V1: {};
};
}
export declare function fromDecoded(obj: any): types.LayoutVersionKind;
export declare function fromJSON(obj: types.LayoutVersionJSON): types.LayoutVersionKind;
export declare function layout(property?: string): borsh.EnumLayout<unknown>;
//# sourceMappingURL=LayoutVersion.d.ts.map