Experiment to rebuild Diffuse using web applets.
1import { provide } from "@scripts/common";
2
3////////////////////////////////////////////
4// SETUP
5////////////////////////////////////////////
6
7const actions = {};
8
9const { tasks } = provide({ actions, tasks: actions });
10
11export type Actions = typeof actions;
12export type Tasks = typeof tasks;
13
14////////////////////////////////////////////
15// ACTIONS
16////////////////////////////////////////////