@stacksjs/types 0.58.59 → 0.58.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.58.59",
4
+ "version": "0.58.61",
5
5
  "description": "The Stacks framework types.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/app.ts CHANGED
@@ -1,4 +1,4 @@
1
- export type AppEnvType = 'local' | 'dev' | 'stage' | 'prod'
1
+ export type AppEnvType = 'local' | 'dev' | 'stage' | 'prod' | string
2
2
 
3
3
  interface Ports {
4
4
  frontend: number
package/src/docs.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import type { UserConfig } from 'vitepress'
2
2
 
3
- interface DeployedUserConfig extends UserConfig {
3
+ export interface DocsUserConfig extends UserConfig {
4
4
  deploy: boolean
5
5
  }
6
6
 
7
- export type DocsConfig = DeployedUserConfig
8
- export type DocsOptions = DocsConfig
7
+ export type DocsConfig = DocsUserConfig
8
+ export type DocsOptions = Partial<DocsConfig>
9
9
 
10
10
  export interface SocialLink {
11
11
  icon: SocialLinkIcon
package/src/team.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  type TeamMemberName = string
2
2
  type Email = string
3
- type TeamMembers = Record<TeamMemberName, Email>[]
3
+ type TeamMembers = Record<TeamMemberName, Email>
4
4
 
5
5
  export interface Team {
6
6
  name: string