Remove duplicate type.

This commit is contained in:
baldo 2022-09-14 16:35:54 +02:00
parent 50dc4733e0
commit 9954a9d1ca

View file

@ -1,8 +1,6 @@
/**
* This module and all submodules provide types that are being shared between client and server.
*/
import { isString } from "./primitives";
export * from "./arrays";
export * from "./config";
export * from "./email";
@ -20,6 +18,3 @@ export * from "./statistics";
export * from "./sortfields";
export * from "./task";
export * from "./time";
export type SearchTerm = string & { readonly __tag: unique symbol };
export const isSearchTerm = isString;