mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
export interface HomeProBlock {
|
|
id?: string
|
|
to?: string
|
|
name?: string
|
|
description?: string
|
|
slot?: string
|
|
class: string
|
|
style?: any
|
|
inactive?: boolean
|
|
transparent?: boolean
|
|
children?: ProBlock[]
|
|
}
|