UNPKG

@linode/api-v4

Version:
17 lines 474 B
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