readonly properties can be modified via aliasingโ๏ธ
interface Person {
name: string;
age : number;
}
interface ReadOnlyPerson {
readonly name: string; // โญ๏ธ readonly
readonly age : number; // โญ๏ธ readonly
}
// writable
let person: Person = {
name: "Person McPersonface",
age: 42,
};
// โญ๏ธ point to same person
let readonlyPerson: ReadOnlyPerson = person;
readonlyPerson.age; // prints '42'
person.age++; // person is writable โญ๏ธ
readonlyPerson.age; // prints '43'
interface StringArray {
//โญโโโ โญ๏ธ โโโโฎ
[ index: T ]: string; // โญ๏ธ index signature
} // T = string or number
const a: StringArray = getStringArray();
const item = a[0];
An index signature property type T must be either โstringโ or โnumberโ.
It is possible to support both types of indexers, but the type returned from a numeric indexer must be a subtype of the type returned from the string indexer. This is because when indexing with a number, JavaScript will actually convert that to a string before indexing into an object. That means: