Fixed basic usability of sheets

This commit is contained in:
Roman Krček
2025-07-08 12:54:38 +02:00
parent c248e4e074
commit bd7e3f9720
7 changed files with 20 additions and 20 deletions

View File

@@ -1,16 +1,6 @@
import { google } from 'googleapis';
import { getAuthenticatedClient } from '../auth/server.js';
export interface GoogleSheet {
id: string;
name: string;
modifiedTime: string;
webViewLink: string;
}
export interface SheetData {
values: string[][];
}
import { GoogleSheet } from './types.ts'
/**
* Get a list of recent Google Sheets

View File

@@ -0,0 +1,10 @@
export interface GoogleSheet {
id: string;
name: string;
modifiedTime: string;
webViewLink: string;
}
export interface SheetData {
values: string[][];
}