UNPKG

runpod-client

Version:

This unofficial runpod.io client provides functionality to interact with the Runpod.io API.

8 lines (7 loc) 293 B
import { ACTIONS } from "./types"; declare const runpod: (key: string) => ({ action, id, count }: { action: ACTIONS; id?: string | undefined; count?: number | undefined; }) => Promise<any> | "Please provide a pod id" | "Please provide a gpu id" | undefined; export default runpod;