9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
|
type PCKeys = 'shortName' | 'longName' | 'description' | 'url' | 'color'
|
||
|
type PCIconsKeys = 'default' | 'image' | 'apple' | '16_16' | '32_32'
|
||
|
|
||
|
type PCProps = Record<PCKeys, string>
|
||
|
|
||
|
export interface PCDefaultValues extends PCProps {
|
||
|
icons: Record<PCIconsKeys, string>
|
||
|
}
|