Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Aug 27, 2024
1 parent 926228d commit a4376d0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib/stores/childrenStore.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { get, writable } from 'svelte/store';

// README: this API is experimental and not by any means a final design

// Types
interface ObservationData {
summary: object;
current: object;
Expand All @@ -20,6 +23,7 @@ interface ChildrenList {
};
}

// store itself: README:
const childrenlist: ChildrenList = {};

const children = writable(childrenlist);
Expand Down

0 comments on commit a4376d0

Please sign in to comment.