All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.SymbolDictionary Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.FunctionalInterface;
import js.lang.Any;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSIndexer;

/**
 * An extendable collection of functions for defining symbol paths.
 *
 */
public interface SymbolDictionary extends Any {
  /**
   * @implspec [key in SymbolKey]: (() => void|undefined);
   *
   */
  @JSIndexer
  Value get(SymbolKey key);

  /**
   * @implspec [key in SymbolKey]: (() => void|undefined);
   *
   */
  @JSIndexer
  void set(SymbolKey key, Value value);

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface Value extends Any {
    void apply();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy