-module(nakai@web_components). -compile(no_auto_import). -export([slot/1, template/2]). -spec slot(list(nakai@html@attrs:attr(GVS))) -> nakai@html:node_(GVS). slot(Attrs) -> {leaf_element, <<"slot"/utf8>>, Attrs}. -spec template(list(nakai@html@attrs:attr(GVW)), list(nakai@html:node_(GVW))) -> nakai@html:node_(GVW). template(Attrs, Children) -> {element, <<"template"/utf8>>, Attrs, Children}.