this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 1d0a2674cec96a02d2369b0218da1239c8ec8ba2 17 lines 328 B view raw
1import { Accessor, Setter } from "solid-js"; 2import { Node } from "./node"; 3 4export interface Tab{ 5 name: string, 6 id: string, 7 nodes: Node[], 8 saveLocation: string | null, 9 10 selected: Accessor<boolean>, 11 setSelected: Setter<boolean> 12 13 needsSave: Accessor<boolean>, 14 setNeedsSave: Setter<boolean>, 15 16 needSync: boolean 17}