(style: string)
| 79 | } |
| 80 | |
| 81 | export async function applyStyleHotfixes(style: string): Promise<void> { |
| 82 | if (isDevelopmentVersion() || isEnterprise() || !style) { |
| 83 | return; |
| 84 | } |
| 85 | |
| 86 | // Prepend to body because that's the only way to guarantee they come after the static file |
| 87 | document.body.prepend(<style>{style}</style>); |
| 88 | } |
| 89 | |
| 90 | let localStrings: Record<string, string> = {}; |
| 91 | export function _(...arguments_: Parameters<typeof concatenateTemplateLiteralTag>): string { |
nothing calls this directly
no test coverage detected