microsoft / microsoft/TypeScript
Add typed return for Object.defineProperties
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.3k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
Search Terms
Object.defineProperties typed
Suggestion
const newObject = Object.defineProperties(o, map);
Use Cases
Creating extensions of certain properties while still being able to type-check them
Examples
/** @type {NodeList} */
const nodeListObject = Object.defineProperties(/** @type {Node[]} */ ([]), {
item: {
enumerable: false,
/** @param {number} [index] */
value: function item(index) { return this[index]; },
},
});
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. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
The current type I'm using is the following:
interface ObjectConstructor {
defineProperties<T1, T2 = PropertyDescriptorMap>(o: T1, properties: T2 & ThisType<T1>): T1 & {
[K in keyof T2]: (
T2[K]['get'] extends Function ? ReturnType<T2[K]['get']> :
T2[K]['set'] extends Function ? Parameters<T2[K]['set']>[0] :
T2[K]['value'] extends undefined ? any : T2[K]['value']
)
};
}
It seems alright but I would love to get some feedback. Currently, I'm targeting against .get() first, then .set(arg0) and finally .value.
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia dal punto di ingresso Object.defineProperties e dalla firma ObjectConstructor proposta. Verifica come i casi get, set e value dovrebbero produrre un risultato tipizzato, usando la checklist di compatibilità e degli obiettivi di progettazione come vincoli; il lavoro è completato quando la tipizzazione del valore restituito richiesta è supportata senza modifiche a runtime.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- javascript, typescript
- Ambito
- compilers
- Tipo di issue
- Funzionalità
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100