FIMViz.jsAPI
    Preparing search index...

    Variable FimVizConst

    FimViz: { current(): FimVizInstance; reset(): void } & {
        create: (
            target: string | Element,
            options?: any,
        ) => Promise<FimMap> & {
            off: (evt: string, fn: Function) => any;
            on: (evt: string, fn: Function) => any;
        };
        mount: (
            target: string | Element,
            options?: any,
        ) => Promise<FimMap> & {
            off: (evt: string, fn: Function) => any;
            on: (evt: string, fn: Function) => any;
        };
        parseFile: (
            source: string | ArrayBuffer | Blob | File,
            options?: any,
        ) => Promise<Dataset>;
    } = ...

    Type Declaration

    • create: (
          target: string | Element,
          options?: any,
      ) => Promise<FimMap> & {
          off: (evt: string, fn: Function) => any;
          on: (evt: string, fn: Function) => any;
      }
    • mount: (
          target: string | Element,
          options?: any,
      ) => Promise<FimMap> & {
          off: (evt: string, fn: Function) => any;
          on: (evt: string, fn: Function) => any;
      }
    • parseFile: (source: string | ArrayBuffer | Blob | File, options?: any) => Promise<Dataset>