dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
16 lines (15 loc) • 464 B
TypeScript
/** Inject assets into an html element */
export declare function injectAssets(
/** Html partial that should be injected into the html file. */
html: string, assets: ({
location?: 'head' | 'body' | 'base';
} & ({
url: string;
} | {
text: string;
}))[], options?: {
/** Url part that will be replaced from the assetUrls */
replaceUrlPrefix?: string;
/** baseHref that will be prefixed to all asset urls */
baseHref?: string;
}): Buffer;