17 lines
264 B
TypeScript
17 lines
264 B
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
export interface Button {
|
|
label?: string;
|
|
link?: string;
|
|
}
|
|
export interface Button_Plain {
|
|
label?: string;
|
|
link?: string;
|
|
}
|
|
|
|
export interface Button_NoRelations {
|
|
label?: string;
|
|
link?: string;
|
|
}
|
|
|