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;
}
PropertyType
.rootPossibleURL
Base URL for the app — accepts a string or URL, resolved with requireURL(). readonly
.urlPossibleURI
New URL for the page.
- Resolved using requireURL() if set relative to root readonly
.paramsPossibleURIParams
Set the params in the URL (not merged with existing params).
- Added to url after it is resolved.
- Baseically readonly
.linksPossibleMetaLinks
Set of input meta <link /> tags in { rel: href } format, before hrefs are resolved. readonly
.modulesPossibleMetaAssets
Set of input linked assets in (href)[] format, before hrefs are resolved. readonly
.scriptsPossibleMetaAssets
Set of input linked assets in (href)[] format, before hrefs are resolved. readonly
.stylesheetsPossibleMetaAssets
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.