-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion: optional globals #36057
Comments
Something else to consider: as well as marking individual globals as optional, we might also need a way to specify a group of globals as being optional. In the example of code that is shared between client/server:
Ideally, the implicit global type would work just like a tagged union: Global = Window | NodeJS.Global … and checking for the presence of properties in the union would narrow the implicit global type so that other properties can then be accessed without extra guards: window; // Compile error 😇
alert; // Compile error 😇
addEventListener; // Compile error 😇
if (type window !== 'undefined') {
window; // No compile error 😇
// We checked for the existence of `window`, so other globals must also exist now
alert('foo'); // No compile error 😇
addEventListener('load', () => {}); // No compile error 😇
} In the meantime I'm simulating this by defining an alias: type Env = typeof window | NodeJS.Global;
const hasWindow = typeof window !== 'undefined';
const env: Env = hasWindow ? window : global;
const checkIsEnvWindow = (_thisEnv: Env): _thisEnv is typeof window => hasWindow;
env.alert; // Compile error 😇
env.addEventListener; // Compile error 😇
if (checkIsEnvWindow(env)) {
env.alert('foo'); // No compile error 😇
env.addEventListener('load', () => {}); // No compile error 😇
} The downside of this approach is that it relies on discipline—anyone can still reference/use the types for |
I think this is a very relevant feature as more people are starting to write universal code. But to actually contribute something to the discussion: I think this shouldn't be viewed as being about globals, but rather about declaration merging on any module or global in general. I don't know a lot about the TS codebase and realize this may be harder to implement than plain optional properties in a |
In each of the environments (browser / Node), a global is either always present or always absent. In that sense, the word "optional" may not exactly be a perfect fit. I would love to come up with the better DX ergonomics, but to play devil's advocate, shouldn't we suggest to have separate |
@mvasin What about the editor experience though? VS Code (for example) would need to choose which one of the TS configs to use. You might be able to compose multiple projects into one using project references, but then I'm still not sure the editor experience would be what we want, as outlined in an example above: #36057 (comment). If I'm viewing a code file which is used in Node and in the browser, I should get an error if I try to use |
Good point, editor experience should be straightforward. |
Separate tsconfigs are not sufficient to solve this problem. Say I write something like: export function lowByte(value: number|bigint|BigInt): number {
if (typeof BigInt !== 'undefined' && (typeof value === 'bigint' || value instanceof BigInt)) {
return Number(BigInt.asUintN(8, value as bigint));
} else {
return (value as number & 0xff);
}
} The function is intended to work on all browsers, whether or not they have All the uses of In order for this to type-check, I need the declaration of However, adding I haven't found any way to prevent |
Search Terms
Suggestion
Extracted from this related issue: #21965
Currently TypeScript has no way to represent a global which may or may not exist at runtime.
For example, given a global called
foo
, we can only define it as:But what if
foo
does not always exist?We can't define it as
T | undefined
because this does not reflect the runtime behaviour.T | undefined
means "this will be declared but its value might beundefined
", but the global may not be declared at all, in which case any references would result inReferenceError
s at runtime.If there was a way to mark a global as optional, TypeScript would require a proper guard (
typeof foo !== 'undefined'
) before it can be safely accessed. This way, TypeScript is alerting us to the possibilty of a runtime exception.Use Cases
Examples of "optional globals" below.
In code that is shared between a client (browser) and server (Node):
window
will only exist during the client runtimeglobal
andrequire
will only exist during the server runtimeIn code which may or may not be under test using Cypress, the global
Cypress
will only exist during runtime when the code is under test.Examples
See above.
Checklist
My suggestion meets these guidelines:
The text was updated successfully, but these errors were encountered: