Refactoring: Split shared types into seperate modules and document alot.
This commit is contained in:
parent
e08ae944c4
commit
843cd37243
31 changed files with 2498 additions and 842 deletions
server/services
|
@ -19,7 +19,6 @@ import {
|
|||
CreateOrUpdateNode,
|
||||
EmailAddress,
|
||||
FastdKey,
|
||||
filterUndefinedFromJSON,
|
||||
Hostname,
|
||||
isFastdKey,
|
||||
isHostname,
|
||||
|
@ -36,13 +35,14 @@ import {
|
|||
NodeStatistics,
|
||||
StoredNode,
|
||||
Token,
|
||||
toUnixTimestampSeconds,
|
||||
TypeGuard,
|
||||
unhandledEnumField,
|
||||
UnixTimestampMilliseconds,
|
||||
UnixTimestampSeconds,
|
||||
} from "../types";
|
||||
import util from "util";
|
||||
import { filterUndefinedFromJSON } from "../shared/utils/json";
|
||||
import { unhandledEnumField } from "../shared/utils/enums";
|
||||
import { toUnixTimestampSeconds } from "../shared/utils/time";
|
||||
|
||||
const pglob = util.promisify(glob);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue