@linode/api-v4
Version:
JavaScript wrapper around the Linode APIv4
17 lines • 474 B
TypeScript
import type { Filter, ResourcePage as Page, Params } from '../types';
import type { VLAN } from './types';
/**
* getVlans
*
* Return a paginated list of Virtual LANS (VLANS) on this account.
*
*/
export declare const getVlans: (params?: Params, filters?: Filter) => Promise<Page<VLAN>>;
/**
* getVlan
*
* Return detailed information about a single VLAN
*
*/
export declare const getVlan: (vlanID: number) => Promise<Page<VLAN>>;
//# sourceMappingURL=vlans.d.ts.map