mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-02-04 12:48:52 +08:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
import { addObservablesTo, koArrayWithDestroy } from 'External/ko';
|
|
|
|
export const AccountUserStore = koArrayWithDestroy();
|
|
|
|
addObservablesTo(AccountUserStore, {
|
|
email: '',
|
|
loading: false
|
|
});
|