import { API } from 'homebridge';

export class RoombOMaticPlatform {
  private api: API;

  constructor(api: API) {
    this.api = api;
  }

  someMethod() {
    // Example usage
    const category = this.api.hap.Categories.OTHER;
    // ... rest of the code
  }
}
