@nosana/kit
Version:
Nosana KIT
10 lines • 570 B
TypeScript
import type { Address } from '@solana/kit';
import type { getEndInstruction } from '@nosana/jobs-program';
import type { InstructionsHelperParams } from './types.js';
export type EndParams = {
job: Address;
};
export type EndInstruction = ReturnType<typeof getEndInstruction>;
export type End = (params: EndParams) => Promise<EndInstruction>;
export declare function end({ job }: EndParams, { config, deps, client, get, getRuns, getRequiredWallet, getStaticAccounts, getNosATA, }: InstructionsHelperParams): Promise<EndInstruction>;
//# sourceMappingURL=end.d.ts.map