update
This commit is contained in:
19
ts/types/platform.interfaces.ts
Normal file
19
ts/types/platform.interfaces.ts
Normal 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;
|
Reference in New Issue
Block a user