microsoft / TypeScript-Handbook

Deprecated, please use the TypeScript-Website repo instead
https://github.com/microsoft/TypeScript-Website
Apache License 2.0
4.88k stars 1.13k forks source link

Fix typo in Interface article. #1104

Closed markgraydev closed 5 years ago

markgraydev commented 5 years ago

Lost right curly bracket in NumberOrStringDictionary definition:

interface NumberOrStringDictionary {
    [index: string]: number | string;
    length: number;    // ok, length is a number
    name: string;      // ok, name is a string