Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[browser] Support separation hybrid globalization JS code to es6 module #55716

Merged
merged 5 commits into from
May 27, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/Components/dotnet-runtime-js/dotnet.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//!
//! This is generated file, see src/mono/wasm/runtime/rollup.config.js

//! This is not considered public API with backward compatibility guarantees.
//! This is not considered public API with backward compatibility guarantees.
ilonatommy marked this conversation as resolved.
Show resolved Hide resolved

declare interface NativePointer {
__brandNativePointer: "NativePointer";
Expand Down Expand Up @@ -179,6 +179,7 @@ interface ResourceGroups {
lazyAssembly?: ResourceList;
pdb?: ResourceList;
jsModuleWorker?: ResourceList;
jsModuleGlobalization?: ResourceList;
jsModuleNative: ResourceList;
jsModuleRuntime: ResourceList;
wasmSymbols?: ResourceList;
Expand Down Expand Up @@ -250,7 +251,7 @@ interface AssetEntry extends ResourceRequest {
*/
pendingDownload?: LoadingResource;
}
type SingleAssetBehaviors =
type SingleAssetBehaviors =
/**
* The binary of the dotnet runtime.
*/
Expand All @@ -271,11 +272,15 @@ type SingleAssetBehaviors =
* The javascript module for emscripten.
*/
| "js-module-native"
/**
* The javascript module for hybrid globalization.
*/
| "js-module-globalization"
/**
* Typically blazor.boot.json
*/
| "manifest";
type AssetBehaviors = SingleAssetBehaviors |
type AssetBehaviors = SingleAssetBehaviors |
/**
* Load asset as a managed resource assembly.
*/
Expand Down
Loading