1type Data = {
2 value: number;
3 text: string;
4};
5type textProperty = Data["text"]; //string
6
7//OR
8const data = {
9 value: 123,
10 text: 'hello'
11};
12type textProperty = typeof data["text"]; //string
1const data = {
2 value: 123,
3 text: 'text'
4};
5type Data = typeof data["text"]; // String