Current section
Files
Jump to
Current section
Files
src/plunk@event.erl
-module(plunk@event).
-compile([no_auto_import, nowarn_unused_vars]).
-export([track/0]).
-export_type([event/0]).
-type event() :: {event,
binary(),
binary(),
list({binary(), gleam@json:json()})}.
-spec track() -> any().
track() ->
erlang:error(#{gleam_error => todo,
message => <<"This has not yet been implemented"/utf8>>,
module => <<"plunk/event"/utf8>>,
function => <<"track"/utf8>>,
line => 9}).