Gemini-OS / types.ts
khulnasoft's picture
Create types.ts
cf39ffc verified
raw
history blame contribute delete
339 Bytes
/**
* @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;
}