OpenFin Workspace Platform API
    Preparing search index...

    Function wrapSync

    • Synchronously returns a Platform object that represents an existing platform.

      import * as WorkspacePlatform from '@openfin/workspace-platform';

      // declare platform identity
      const myPlatformIdentity: OpenFin.ApplicationIdentity = {
      uuid: 'testPlatform',
      name: 'Test Platform'
      };

      // get the platform representing myPlatformIdentity
      const platform = WorkspacePlatform.wrapSync(myPlatformIdentity);

      // do something with platform. e.g. create a window
      platform.createWindow({
      layout: {
      content: [
      {
      type: 'component',
      componentName: 'Example View',
      componentState: {
      name: 'example_view_1'
      url: 'https://developer.openfin.co/docs/javascript/stable/index.html'
      }
      }
      ]
      }
      });

      Parameters

      • identity: ApplicationIdentity

      Returns WorkspacePlatformModule