delta-store
Version:
An API for a store with change records
19 lines (18 loc) • 594 B
TypeScript
/**
* Created by Papa on 1/5/2016.
*/
import { PromiseHttp } from './../../PromiseHttp';
import { GoogleApi } from '../GoogleApi';
export declare class GoogleSheets {
private googleApi;
private promiseHttp;
urlPrefix: string;
constructor(googleApi: GoogleApi, promiseHttp: PromiseHttp);
getSheet(fileId: string): Promise<any>;
getWorksheets(fileId: string): Promise<any>;
getRequestOptionsArgs(): any;
private getListFeedUrl(fileId);
private getWorksheetsUrl(fileId);
private getUrlSuffix();
addRow(fileId: string, rowXml: string): Promise<any>;
}