next-app-boilerplate/types/config.ts

13 lines
293 B
TypeScript
Raw Normal View History

type SEOKeys =
2022-05-16 14:33:56 +02:00
| 'shortName'
| 'longName'
| 'description'
| 'url'
| 'color'
| 'defaultLocale'
type PCIconsKeys = 'default' | 'image' | 'apple' | '16_16' | '32_32'
export interface SEODefaultValues extends Partial<Record<SEOKeys, string>> {
icons?: Record<PCIconsKeys, string>
}