delta-store
Version:
An API for a store with change records
20 lines (17 loc) • 475 B
text/typescript
import {SharingPlatformSetupInfo} from '../SharingAdaptor';
import {ChangeListShareInfo} from '../SharingAdaptor';
/**
* Created by Papa on 1/10/2016.
*/
export interface GoogleSetupInfo extends SharingPlatformSetupInfo {
apiKey:string;
clientId:string;
rootFolder:string;
sharedAppFolderId?:string;
}
export interface GoogleChangeListShareInfo extends ChangeListShareInfo {
folderId:string;
realtimeFileId?:string;
recentFileId?:string;
archiveFileId?:string;
}