Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1016 Bytes

File metadata and controls

46 lines (32 loc) · 1016 Bytes

Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference

{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}

ExecutableCode interface

An interface for executable code returned by the model.

Signature:

export interface ExecutableCode 

Properties

Property Type Description
code string The source code to be executed.
language Language The programming language of the code.

ExecutableCode.code

The source code to be executed.

Signature:

code?: string;

ExecutableCode.language

The programming language of the code.

Signature:

language?: Language;