mirror of
https://github.com/rustfs/console.git
synced 2026-08-29 03:52:28 +08:00
5cd22b33f2
* 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>
22 lines
347 B
TypeScript
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
|
|
}
|
|
}
|