/** * @class Mutable */ interface Mutable { /** * @property coords * @type T */ coords: T; } export default Mutable;