@kamino-finance/scope-sdk
Version:
Scope Oracle SDK
22 lines • 602 B
TypeScript
import * as types from "../types";
export interface FeeFields {
basisPoints: number;
}
export interface FeeJSON {
basisPoints: number;
}
export declare class Fee {
readonly basisPoints: number;
constructor(fields: FeeFields);
static layout(property?: string): import("buffer-layout").Layout<unknown>;
static fromDecoded(obj: any): types.Fee;
static toEncodable(fields: FeeFields): {
basisPoints: number;
};
toJSON(): FeeJSON;
static fromJSON(obj: FeeJSON): Fee;
toEncodable(): {
basisPoints: number;
};
}
//# sourceMappingURL=Fee.d.ts.map