delta-store
Version:
An API for a store with change records
18 lines (17 loc) • 780 B
TypeScript
/**
* Created by Papa on 1/3/2016.
*/
import { GoogleDrive } from './GoogleDrive';
import { GoogleApi } from '../GoogleApi';
import { DriveResponse } from './GoogleDriveModel';
import { GoogleSetupInfo } from '../GoogleSharingModel';
import { GoogleChangeListShareInfo } from '../GoogleSharingModel';
export declare class GoogleDriveAdaptor {
private googleApi;
private googleDrive;
constructor(googleApi: GoogleApi, googleDrive: GoogleDrive);
initialize(apiKey: string, clientId: string): Promise<any>;
setup(setupInfo: GoogleSetupInfo): Promise<DriveResponse>;
listChangeLists(info: GoogleSetupInfo): Promise<GoogleChangeListShareInfo[]>;
populateChangeListFileInfo(changeListInfo: GoogleChangeListShareInfo): Promise<GoogleChangeListShareInfo>;
}