jjj 0.2.1

A modal interface for Jujutsu.
1
2
3
4
5
6
7
8
9
10
11
export * from "./shared.js";
function defineAction() {
  throw new Error("[astro:action] `defineAction()` unexpectedly used on the client.");
}
function getActionContext() {
  throw new Error("[astro:action] `getActionContext()` unexpectedly used on the client.");
}
export {
  defineAction,
  getActionContext
};