cardUnlock partial usecolor

This commit is contained in:
ticaki
2024-01-02 17:44:44 +01:00
parent 43df10e823
commit e87febc54a

View File

@@ -9401,32 +9401,32 @@ type PageGrid2 = {
type PageThermo = { type PageThermo = {
type: 'cardThermo', type: 'cardThermo',
items: PageItem[], items: PageItem[],
} & PageBaseType } & Omit<PageBaseType, 'useColor'>
type PageMedia = { type PageMedia = {
type: 'cardMedia', type: 'cardMedia',
items: PageItem[], items: PageItem[],
} & PageBaseType } & Omit<PageBaseType, 'useColor'>
type PageAlarm = { type PageAlarm = {
type: 'cardAlarm', type: 'cardAlarm',
items: PageItem[], items: PageItem[],
} & PageBaseType } & Omit<PageBaseType, 'useColor'>
type PageUnlock = { type PageUnlock = {
type: 'cardUnlock', type: 'cardUnlock',
items: PageItem[], items: PageItem[],
} & PageBaseType } & Omit<PageBaseType, 'useColor'> & Partial<Pick<PageBaseType, 'useColor'>>
type PageQR = { type PageQR = {
type: 'cardQR', type: 'cardQR',
items: PageItem[], items: PageItem[],
} & PageBaseType } & Omit<PageBaseType, 'useColor'>
type PagePower = { type PagePower = {
type: 'cardPower', type: 'cardPower',
items: PageItem[], items: PageItem[],
} & PageBaseType } & Omit<PageBaseType, 'useColor'>
type PageChart = { type PageChart = {
type: 'cardChart' | 'cardLChart', type: 'cardChart' | 'cardLChart',