5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
|
declare const productScreen: { name: string };
|
||
|
declare const global: typeof globalThis & {
|
||
|
productScreen: typeof productScreen;
|
||
|
};
|