import type { PublicKey } from "@solana/web3.js"; /** * Generic type that defines the return type for a function */ export type AccountFn = () => Promise>; /** * Generic AccountData type * @param pubkey account public key * @param parsed parsed data from account */ export type AccountData = { pubkey: PublicKey; parsed: T; }; //# sourceMappingURL=types.d.ts.map