eval-genius
Version:
eval-genius enables evals of arbitrary async code. It is generally intended for making multiple assertions on outputs which are generated nondeterministically. These assertions can be used to score algorithms on their effectiveness.
13 lines (12 loc) • 378 B
TypeScript
import { GoogleSpreadsheet } from 'google-spreadsheet';
import { Exporter } from './types';
type NewDocumentInit = {
title: string;
folderId?: string;
};
type ExistingDocumentInit = {
spreadsheetId: string;
};
type InitArg = NewDocumentInit | ExistingDocumentInit;
export declare const GoogleSheetsExporter: Exporter<InitArg, Promise<GoogleSpreadsheet>>;
export {};