Files
rustfs-console/types/theme.d.ts
T
安正超 5cd22b33f2 feat: extract theme module with build-time overrides (#79)
* feat: extract theme module with build-time overrides

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* fix: address theme module review feedback

---------

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-03-15 14:03:50 +08:00

22 lines
347 B
TypeScript

export interface ThemeManifest {
schemaVersion: number
id: string
name: string
brand: {
name: string
shortName?: string
description?: string
}
assets: {
logo: string
logoCompact?: string
userAvatar?: string
}
links: {
website?: string
documentation?: string
github?: string
x?: string
}
}