chore(root): cleanup

This commit is contained in:
Ben Allfree 2024-06-29 17:25:31 -07:00
parent b43aeb1552
commit 873fcd1074

View File

@ -1,18 +1,11 @@
export type RecordId = string
export type UserId = RecordId export type UserId = RecordId
export type InstanceId = RecordId export type InstanceId = RecordId
export type Semver = string export type Semver = string
export type InternalInstanceId = RecordId export type InternalInstanceId = RecordId
export type Subdomain = string export type Subdomain = string
export type Port = number export type Port = number
export type IsoDate = string
export type ProcessId = number export type ProcessId = number
export type Username = string export type Username = string
export type Password = string export type Password = string
export type CollectionName = string export type CollectionName = string
export type Seconds = number export type Seconds = number
export type BaseFields = {
id: RecordId
created: IsoDate
updated: IsoDate
}