export default function()

in src/figma/controllers/figma_controller/index.ts [6:15]


export default function(messageService: MessageService): FigmaController {
  return {
    init(): void {
      // https://www.figma.com/plugin-docs/api/properties/figma-on/#selectionchange
      figma.on('selectionchange', () => {
        messageService.updateSelection();
      });
    },
  };
}