Spaces:
Build error
Build error
/** | |
* @license | |
* SPDX-License-Identifier: Apache-2.0 | |
*/ | |
/* tslint:disable */ | |
export interface AppDefinition { | |
id: string; | |
name: string; | |
icon: string; | |
color: string; | |
} | |
export interface InteractionData { | |
id: string; | |
type: string; | |
value?: string; | |
elementType: string; | |
elementText: string; | |
appContext: string | null; | |
} | |