Function library

  • Loads the library and returns the proxy object.

    Returns

    Proxy object.

    Parameters

    • options: {
          mode: "remote" | "local";
          path: string;
          synapsePath: string;
      }

      Library options.

      • mode: "remote" | "local"
      • path: string
      • synapsePath: string

    Returns Promise<{
        funcs: {
            [key: string]: ((...args: any[]) => any);
        };
        path: string;
        synapsePath: string;
    }>

Generated using TypeDoc