This commit is contained in:
2025-05-21 00:12:49 +00:00
parent 5c85188183
commit b1890f59ee
27 changed files with 2096 additions and 705 deletions

View File

@ -0,0 +1,19 @@
/**
* Minimal platform interfaces to support transition
*/
/**
* Dummy placeholder for SzPlatformService interface
*/
export interface SzPlatformService {
// Empty interface for now
typedrouter?: any;
}
// Create a default export with an object that has the SzPlatformService property
const interfaces = {
// Add a dummy constructor function that returns an empty object
SzPlatformService: function() { return {}; }
};
export default interfaces;