2022-05-16 14:33:56 +02:00
|
|
|
type PCKeys =
|
|
|
|
| 'shortName'
|
|
|
|
| 'longName'
|
|
|
|
| 'description'
|
|
|
|
| 'url'
|
|
|
|
| 'color'
|
|
|
|
| 'defaultLocale'
|
2022-03-24 14:46:54 +01:00
|
|
|
type PCIconsKeys = 'default' | 'image' | 'apple' | '16_16' | '32_32'
|
|
|
|
|
|
|
|
type PCProps = Record<PCKeys, string>
|
|
|
|
|
|
|
|
export interface PCDefaultValues extends PCProps {
|
|
|
|
icons: Record<PCIconsKeys, string>
|
|
|
|
}
|