SyncedStorage.(constructor)
SyncedStorage 인스턴스를 생성합니다. 데이터를 저장할 키와 Storage 객체를 받습니다.
생성될때, storage 이벤트가 등록되며 다른 브라우저에서의 change event를 감지하여, 최신값을 가져옵니다.
Signature
constructor(key: string, storage: Storage);
Parameters
Parameter | Type | Description |
---|---|---|
key | string | 데이터를 저장할 키입니다. |
storage | Storage | 데이터를 저장할 Storage 객체입니다. |