mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-01 08:16:03 +00:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
import { addObservablesTo, koArrayWithDestroy } from 'External/ko';
|
|
|
|
export const AccountUserStore = koArrayWithDestroy();
|
|
|
|
addObservablesTo(AccountUserStore, {
|
|
email: '',
|
|
loading: false
|
|
});
|