Move shared code into own directory for use in new frontend.

This commit is contained in:
baldo 2022-08-04 15:31:01 +02:00
parent d5c0538544
commit dda66c67bd
10 changed files with 9 additions and 9 deletions
server/types

View file

@ -15,12 +15,12 @@ import {
StoredNode,
toIsEnum,
toIsNewtype,
} from "./shared";
} from "../shared/types";
export * from "./config";
export * from "./database";
export * from "./logger";
export * from "./shared";
export * from "../shared/types";
export type NodeStateData = {
site?: Site,