UNPKG

c8osdkjscore

Version:
16 lines (14 loc) 370 B
export class FullSyncReplication { public pull: boolean; public sync: boolean; public replication: any; //noinspection JSUnusedGlobalSymbols public changeListener: Event; constructor(pull: boolean = null) { if (pull != null) { this.pull = pull; } else { this.sync = true; } } }