Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Generate text and images via the reverse-engineered Gemini Web API with multi-turn conversation support.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/gemini-webapi/types/grpc.ts
1export class RPCData {2constructor(3public rpcid: string,4public payload: string,5public identifier: string = 'generic',6) {}78toString(): string {9return `GRPC(rpcid='${this.rpcid}', payload='${this.payload}', identifier='${this.identifier}')`;10}1112serialize(): unknown[] {13return [this.rpcid, this.payload, null, this.identifier];14}15}1617