@linode/api-v4
Version:
JavaScript wrapper around the Linode APIv4
19 lines • 506 B
TypeScript
import { Filter, Params, ResourcePage } from '../types';
import { Beta } from './types';
/**
* getBetas
*
* Retrieve a paginated list of active beta programs.
*
**/
export declare const getBetas: (params?: Params, filter?: Filter) => Promise<ResourcePage<Beta>>;
/**
* getBeta
*
* Retrieve details for a single beta program.
*
* @param betaId { string } The ID of the beta to be retrieved
*
*/
export declare const getBeta: (betaId: string) => Promise<Beta>;
//# sourceMappingURL=betas.d.ts.map