From 873fcd1074be74f8a7b4739e75e93001eff2c86e Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sat, 29 Jun 2024 17:25:31 -0700 Subject: [PATCH] chore(root): cleanup --- pending-packages/mothership-dashboard/types.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pending-packages/mothership-dashboard/types.ts b/pending-packages/mothership-dashboard/types.ts index 03c5081b..13abd241 100644 --- a/pending-packages/mothership-dashboard/types.ts +++ b/pending-packages/mothership-dashboard/types.ts @@ -1,18 +1,11 @@ -export type RecordId = string export type UserId = RecordId export type InstanceId = RecordId export type Semver = string export type InternalInstanceId = RecordId export type Subdomain = string export type Port = number -export type IsoDate = string export type ProcessId = number export type Username = string export type Password = string export type CollectionName = string export type Seconds = number -export type BaseFields = { - id: RecordId - created: IsoDate - updated: IsoDate -}