delta-store
Version:
An API for a store with change records
18 lines (17 loc) • 509 B
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;
}