PR-687356: Updating packages and adding support to HMR to server also.

This commit is contained in:
2025-04-18 18:10:39 +00:00
parent 4ca7a5a191
commit 846d498025
5 changed files with 209 additions and 188 deletions

View File

@ -2,3 +2,10 @@ declare module '*.svg' {
const content: any;
export default content;
}
declare const module: {
hot?: {
accept(dep?: string, callback?: () => void): void;
dispose(callback: () => void): void;
};
};