티스토리 뷰
https://soopdop.github.io/2020/12/01/index-signatures-in-typescript/
Index Signature 선언하기
방법은 간단하다. 아래와 같이 객체에 index signature를 한줄 추가한다.
type ObjType = {
[index: string]: string foo: string
bar: string
}
const obj: ObjType = {
foo: "hello",
bar: "world",
}
const propertyName1 = "foo"
const propertyName2: string = "foo"
console.log(obj[propertyName1]) // ok
console.log(obj[propertyName2]) // ok
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- eslint
- 카카오 카드 짝 맞추기 javascript
- rollup ts react npm
- rollup react.js npm
- react 3d
- attempted import error: bvh_struct_definitions' is not exported from './gpu/bvhshaderglsl.js' (imported as 'bvhshaderglsl').
- Vue.js
- react glsl
- 카카오 2021 카드 짝 맞추기
- webpack glsl
- 카드 짝 맞추기 javascript
- react three fiber leva
- three.js leva
- typescript gsls
- 카드 짝 맞추기 자바스크립트
- react 3d animation
- ts glsl
- react 3d 에니메이션
- rollup typescript react
- 카카오 카드 짝 맞추기 자바스크립트
- next.js import glsl
- next.js glsl
- vue3
- rollup typescript
- react fiber 3d
- vue
- react leva
- react 3d text
- leva
- react three fiber
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함