UNPKG

@converse/headless

Version:

Converse.js Headless build

15 lines (12 loc) 283 B
import { Collection } from "@converse/skeletor"; import DeviceList from "./devicelist.js"; /** * @extends {Collection<DeviceList>} */ class DeviceLists extends Collection { constructor() { super(); this.model = DeviceList; } } export default DeviceLists;