/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import type { Options } from "auto-bind"; import autoBindClass from "auto-bind"; import autoBindReactClass from "auto-bind/react"; import React from "react"; // Automatically bind methods to their class instance export function autoBind(obj: T, opts?: Options): T { if (obj instanceof React.Component) { return autoBindReactClass(obj, opts); } return autoBindClass(obj, opts); }