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

@ -1,5 +1,5 @@
import {ArrayField, Field, RawJsonField} from "sparkson"
import {ClientConfig, DurationMilliseconds, isString, toIsNewtype, Url} from "./shared";
import {ClientConfig, DurationMilliseconds, isString, toIsNewtype, Url} from "../shared/types";
export type Username = string & { readonly __tag: unique symbol };
export const isUsername = toIsNewtype(isString, "" as Username);