UNPKG

@fleetbase/sdk

Version:
11 lines (8 loc) 290 B
import Place from './place.js'; import { register } from '../registry.js'; export default class Waypoint extends Place { constructor(attributes = {}, adapter, options = {}) { super(attributes, adapter, 'waypoint', options); } } register('resource', 'Waypoint', Waypoint);