Type Alias RenderBuiltAssetUrl
RenderBuiltAssetUrl: (
filename: string,
type: {
hostId: string;
hostType: "js" | "css" | "html";
ssr: boolean;
type: "asset" | "public";
},
) => string
| { relative?: boolean; runtime?: string }
| undefined
Type Declaration
- (
filename: string,
type: {
hostId: string;
hostType: "js" | "css" | "html";
ssr: boolean;
type: "asset" | "public";
},
): string
| { relative?: boolean; runtime?: string }
| undefined Parameters
- filename: string
- type: {
hostId: string;
hostType: "js" | "css" | "html";
ssr: boolean;
type: "asset" | "public";
}
Returns string | { relative?: boolean; runtime?: string } | undefined