Skip to content

Instantly share code, notes, and snippets.

@esamattis
Created February 2, 2022 13:00
Show Gist options
  • Save esamattis/ca7480b878283904908c568d9f4600de to your computer and use it in GitHub Desktop.
Save esamattis/ca7480b878283904908c568d9f4600de to your computer and use it in GitHub Desktop.
Type-safe custom globals
function maybeGlobal<T extends object>(): Partial<T> | undefined {
return (typeof window !== "undefined" ? window : undefined) as any;
}
maybeGlobal<{
MY_GLOBAL_VARIABLE: string;
}>()?.MY_GLOBAL_VARIABLE?.toUpperCase();
interface MyGlobals {
MY_GLOBAL_VARIABLE?: string;
}
type MyWindow = (Window & MyGlobals) | undefined;
const myWindow: MyWindow = typeof window !== "undefined" ? window : undefined;
console.log(myWindow?.MY_GLOBAL_VARIABLE?.toUpperCase() + "!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment