Fixed basic usability of sheets
This commit is contained in:
@@ -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
|
||||
|
||||
10
src/lib/google/sheets/types.ts
Normal file
10
src/lib/google/sheets/types.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface GoogleSheet {
|
||||
id: string;
|
||||
name: string;
|
||||
modifiedTime: string;
|
||||
webViewLink: string;
|
||||
}
|
||||
|
||||
export interface SheetData {
|
||||
values: string[][];
|
||||
}
|
||||
Reference in New Issue
Block a user