blob: d3665022e96fd98803a893604b057b19956621ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { Component } from '@serpentity/serpentity';
/**
* Component that stores points in arbitrary labels
*
* @extends {external:Serpentity.Component}
* @class PointsComponent
* @param {object} config a configuration object to extend.
*/
export default class PointsComponent extends Component {}
|