- TypeScript Tutorial
- TypeScript Home
- TypeScript Introduction
- TypeScript Setup
- TypeScript First Program
- TypeScript vs JavaScript
- TypeScript Data Types
- TypeScript Type Inference
- TypeScript Type Annotations
- TypeScript Interfaces
- TypeScript Enums
- TypeScript Type Aliases
- TypeScript Type Assertions
- TypeScript Variables
- TypeScript Functions
- TypeScript Functions
- TypeScript Optional Parameters
- TypeScript Default Parameters
- TypeScript Rest Parameters
- TypeScript Arrow Functions
- Classes and Objects
- Introduction to Classes
- Properties and Methods
- Access Modifiers
- Static Members
- Inheritance
- Abstract Classes
- Interfaces vs Classes
- Advanced Types
- TypeScript Union Types
- TypeScript Intersection Types
- TypeScript Literal Types
- TypeScript Nullable Types
- TypeScript Type Guards
- TypeScript Discriminated Unions
- TypeScript Index Signatures
- TypeScript Generics
- Introduction to Generics
- TypeScript Generic Functions
- TypeScript Generic Classes
- TypeScript Generic Constraints
- TypeScript Modules
- Introduction to Modules
- TypeScript Import and Export
- TypeScript Default Exports
- TypeScript Namespace
- Decorators
- Introduction to Decorators
- TypeScript Class Decorators
- TypeScript Method Decorators
- TypeScript Property Decorators
- TypeScript Parameter Decorators
- Configuration
- TypeScript tsconfig.json File
- TypeScript Compiler Options
- TypeScript Strict Mode
- TypeScript Watch Mode
TypeScript Index Signatures
In TypeScript, index signatures allow you to define objects with dynamic property names. This is useful when you do not know the exact keys in advance, but you do know the type of values associated with those keys. Index signatures enable TypeScript to enforce type safety for objects with arbitrary keys, ensuring that each key in the object follows a particular type.
What is an Index Signature?
An index signature is a way to define types for object properties that are not explicitly declared. It is a placeholder for property names of the object, with constraints on the type of the property values. Index signatures are defined using square brackets []
and specifying the type for the property name (typically string
or number
) and the type for the value.
Syntax
The basic syntax for an index signature is:
interface SomeObject {
[key: string]: type;
}
[key: string]
: Defines the index signature, wherekey
is the placeholder for the property name, andstring
specifies that the key should be a string.type
: The type of the value that each property will have.
Example of Index Signatures
Here is an example that demonstrates how to use index signatures in TypeScript:
interface Dictionary {
[key: string]: string;
}
const myDict: Dictionary = {
name: "John",
city: "New York",
country: "USA",
};
console.log(myDict.name); // Output: John
console.log(myDict.city); // Output: New York
Explanation:
- The
Dictionary
interface defines an index signature where the keys are strings (key: string
) and the values are also strings (string
). - We create an object
myDict
that has arbitrary keys with string values. - TypeScript ensures that any property added to
myDict
must have a string value.
Key Concepts of Index Signatures
- Flexible Object Types: Index signatures are used when the object properties are not known in advance but share a common type for the values.
- String and Number Keys: Index signatures can use either a
string
ornumber
as the key type. - Type Enforcements: TypeScript enforces that all properties of the object follow the defined type in the index signature.
Example with number
Keys
You can also use a number type as the key for the index signature. This is commonly used when working with arrays or similar structures where the keys are numeric indices:
interface ArrayLike {
[index: number]: string;
}
const myArray: ArrayLike = ["apple", "banana", "cherry"];
console.log(myArray[0]); // Output: apple
console.log(myArray[2]); // Output: cherry
Explanation:
- The
ArrayLike
interface defines an index signature with a numeric index (index: number
) and values of typestring
. - The
myArray
object is treated as an array with string values.
Combining Index Signatures with Other Properties
You can combine index signatures with explicitly defined properties in the same object. However, the explicitly defined properties must have the same type as the value type in the index signature:
interface Product {
id: number;
name: string;
[key: string]: string | number; // Allowing dynamic keys with values of type string or number
}
const product: Product = {
id: 1,
name: "Laptop",
brand: "Dell",
price: 1200,
};
console.log(product.name); // Output: Laptop
console.log(product.brand); // Output: Dell
console.log(product.price); // Output: 1200
Explanation:
- The
Product
interface definesid
andname
as explicitly typed properties. - The index signature
[key: string]: string | number
allows any other property with a dynamic key, but ensures that the value is either astring
ornumber
. - The
product
object has both explicitly defined properties (id
andname
) and dynamic properties (brand
andprice
).
Limitations of Index Signatures
- Value Type Consistency: The index signature applies to all properties of the object, so all properties must have the same value type. You cannot have a mix of different value types unless explicitly allowed.
- Key Type Consistency: You can only use
string
ornumber
as the key type. Any other type (likeboolean
) will cause an error.
Example of Restricting Index Signatures
If you need to restrict the value types more strictly, you can use as
to enforce specific types:
interface UserProfile {
[key: string]: string;
}
const profile: UserProfile = {
username: "john_doe",
email: "[email protected]",
age: "30", // Age is a string in this case
};
console.log(profile.username); // Output: john_doe
Explanation:
- The
UserProfile
interface has an index signature that restricts the value type tostring
. - In the
profile
object, theage
field is a string, even though it's intended to be a number. This flexibility is allowed by TypeScript, as the index signature type isstring
.
Summary
Index signatures in TypeScript allow you to create objects with dynamic keys while enforcing type safety for the values associated with those keys. They are particularly useful for modeling collections or objects with unknown property names but known value types.
- Index Signature: A way to define dynamic properties in an object, enforcing a certain type for the values.
- String and Number Keys: The keys can be either
string
ornumber
, making index signatures versatile for various data structures. - Type Safety: TypeScript ensures that all properties comply with the value type specified in the index signature, improving type safety.
Index signatures are ideal for situations like dictionaries, maps, and similar structures where the object keys are not predefined.