microsoft / microsoft/TypeScript
Forward compatible type definitions regarding compiler warnings
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.3k
- Merge medio
- 2 d 4 h
- PR fusionados (30 d)
- 132
Descripción
Search Terms
forward compatibility, experimental features, forward compatible, undeclared types, new browser features, warning undeclared overloads
Suggestion
Currently if a TypeScript .d.ts file contains a function overload with an unknown type it doesn't discard the type but rather treats it like there was an overload that produces any as the return type.
This is more easily demonstrated with an example:
// plus.js
function plus(x, y) {
return x + y
}
// plus.d.ts
export default function plus(a: number, b: number): number
// Forward compatible definition that should be ignored by older
// versions of TypeScript that don't recognise it or by
// consumers using a "target"/"lib" that isn't "esnext" (or whatever version
// bigint eventually ends up in)
export default function plus(a: bigint, b: bigint): bigint
export default function plus(a: string, b: string): string
Now if we use the function like so:
const value = plus({}, {})
Will produce different results based on if the --lib/--target supports `bigint or not.
In a world that does support BigInt we will get a warning: Argument of type '{}' is not assignable to parameter of type 'string' which means if people are in the future world then it behaves just fine. But if they use it in a non future world then no warning is issued and the type of value is inferred to be any.
NOTE: The fact bigint is used here isn't really important it was just a simple example to write, this applies to any differences between needed target of the d.ts file and target of the consumer.
Use Cases
The main use case is for libraries that wish to be forward compatible with types that might not be configured in --lib/--target by feature detection (or by just working in the case of the example).
Examples
I'm not sure what would be the best way of supporting this, probably another flag like --warnings-ignore-unrecognized-overloads or something along those lines.
Alternatively it could also be syntax powered e.g. the above example could become something like this:
export default function plus(a: number, b: number): number
export default function plus(a: string, b: string): string
supports bigint {
export default function plus(a: bigint, b: bigint): bigint
}
Some additional non-bigint examples using the supports example syntax to show examples of where automatic upgrading could happen:
export default function sum(iterable: Iterable<number>): number
supports AsyncIterable {
export default function sum(
asyncIterable: AsyncIterable<number>,
): Promise<number>
}
export default function findElements(node: Element): Array<Element>
supports ShadowRoot {
export default function findElements(shadowRoot: ShadowRoot): Array<Element>
}
export default function render(canvas: HTMLCanvasElement): void
supports OffscreenCanvas {
export default function render(canvas: OffscreenCanvas): void
}
Checklist
My suggestion meets these guidelines:
- [✔] This wouldn't be a breaking change in existing TypeScript / JavaScript code
- [✔] This wouldn't change the runtime behavior of existing JavaScript code
- [✔] This could be implemented without emitting different JS based on the types of the expressions
- [✔] This isn't a runtime feature (e.g. new expression-level syntax)
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Empieza reproduciendo los ejemplos de plus.d.ts con diferentes configuraciones de --lib o --target y, después, sigue cómo TypeScript resuelve las sobrecargas que contienen tipos no declarados. Compara los enfoques propuestos de advertencias y sintaxis condicional, y define el comportamiento para bigint, AsyncIterable, ShadowRoot y OffscreenCanvas antes de implementar pruebas para entornos compatibles y no compatibles.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript
- Área
- compilers
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 5/5
- Tiempo estimado
- Más de una semana
- Estado de actividad
- Estancado
- Claridad
- Necesita aclaración
- Aptitud para principiantes
- 25/100