export default function handleNotify()

in src/figma/controllers/message_controller/handlers/notify.ts [1:5]


export default function handleNotify(pluginMessage: PluginMessage): Promise<NotificationHandler> {
  const { message, options } = pluginMessage.data;

  return Promise.resolve(figma.notify(message, options));
}