mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 06:18:03 +08:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
import ko from 'ko';
|
|
|
|
class PluginAdminStore {
|
|
constructor() {
|
|
this.plugins = ko.observableArray();
|
|
this.plugins.loading = ko.observable(false).extend({ throttle: 100 });
|
|
this.plugins.error = ko.observable('');
|
|
}
|
|
}
|
|
|
|
export default new PluginAdminStore();
|