PossibleMetainterface
{
readonly root?: PossibleURL | undefined;
readonly url?: PossibleURI | undefined;
readonly params?: PossibleURIParams | undefined;
readonly links?: PossibleMetaLinks | undefined;
readonly modules?: PossibleMetaAssets | undefined;
readonly scripts?: PossibleMetaAssets | undefined;
readonly stylesheets?: PossibleMetaAssets | undefined;
}| Property | Type | |
|---|---|---|
.root | PossibleURL | |
.url | PossibleURI | |
.params | PossibleURIParams | Set the params in the URL (not merged with existing params). - Added to url after it is resolved.- Baseically readonly |
.links | PossibleMetaLinks | Set of input meta <link /> tags in { rel: href } format, before hrefs are resolved. readonly |
.modules | PossibleMetaAssets | Set of input linked assets in (href)[] format, before hrefs are resolved. readonly |
.scripts | PossibleMetaAssets | Set of input linked assets in (href)[] format, before hrefs are resolved. readonly |
.stylesheets | PossibleMetaAssets | Set of input linked assets in (href)[] format, before hrefs are resolved. readonly |
Input metadata that can be parsed and converted to a fully-resolved Meta.