mobx#IObservableArray TypeScript Examples
The following examples show how to use
mobx#IObservableArray.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MemStore.ts From clarity with Apache License 2.0 | 5 votes |
userAccounts: IObservableArray<SignKeyPairWithAlias> = observable.array<SignKeyPairWithAlias>(
[],
{ deep: true }
);
Example #2
Source File: MemStore.ts From clarity with Apache License 2.0 | 5 votes |
@observable
toSignMessages: IObservableArray<SignMessage> = observable.array<SignMessage>(
[],
{ deep: true }
);
Example #3
Source File: DagContainer.ts From clarity with Apache License 2.0 | 5 votes |
@observable blocks: IObservableArray<JsonBlock> | null = null;
Example #4
Source File: Collection.tsx From jmix-frontend with Apache License 2.0 | 5 votes |
// Client mode only
changedItems: IObservableArray<any> = observable([]);
Example #5
Source File: MemStore.ts From signer with Apache License 2.0 | 5 votes |
@observable connectedSites: IObservableArray<Site> = observable.array<Site>(
[],
{ deep: true }
);
Example #6
Source File: MemStore.ts From signer with Apache License 2.0 | 5 votes |
userAccounts: IObservableArray<KeyPairWithAlias> =
observable.array<KeyPairWithAlias>([], { deep: true });
Example #7
Source File: MemStore.ts From signer with Apache License 2.0 | 5 votes |
@observable unsignedDeploys: IObservableArray<deployWithID> =
observable.array<deployWithID>([], { deep: true });
Example #8
Source File: MemStore.ts From signer with Apache License 2.0 | 5 votes |
@observable unsignedMessages: IObservableArray<messageWithID> =
observable.array<messageWithID>([], { deep: true });
Example #9
Source File: swapStore.ts From lightning-terminal with MIT License | 5 votes |
/** the ids of failed swaps that have been dismissed */
dismissedSwapIds: IObservableArray<string> = observable.array([]);
Example #10
Source File: MessageQueue.ts From revite with GNU Affero General Public License v3.0 | 5 votes |
private messages: IObservableArray<QueuedMessage>;