Remove duplicate type.
This commit is contained in:
parent
50dc4733e0
commit
9954a9d1ca
|
@ -1,8 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* This module and all submodules provide types that are being shared between client and server.
|
* This module and all submodules provide types that are being shared between client and server.
|
||||||
*/
|
*/
|
||||||
import { isString } from "./primitives";
|
|
||||||
|
|
||||||
export * from "./arrays";
|
export * from "./arrays";
|
||||||
export * from "./config";
|
export * from "./config";
|
||||||
export * from "./email";
|
export * from "./email";
|
||||||
|
@ -20,6 +18,3 @@ export * from "./statistics";
|
||||||
export * from "./sortfields";
|
export * from "./sortfields";
|
||||||
export * from "./task";
|
export * from "./task";
|
||||||
export * from "./time";
|
export * from "./time";
|
||||||
|
|
||||||
export type SearchTerm = string & { readonly __tag: unique symbol };
|
|
||||||
export const isSearchTerm = isString;
|
|
||||||
|
|
Loading…
Reference in a new issue