microsoft/TypeScript-Handbook

Fix typo in Interface article.

markgraydev opened this issue · 0 comments

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