Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Sep 2, 2022
1 parent 7aad0c0 commit 5255537
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
SingleResourceRelationship,
} from '@ember-data/types/q/ember-data-json-api';
import type { StableRecordIdentifier } from '@ember-data/types/q/identifier';
import type { ChangedAttributesHash, RecordData } from '@ember-data/types/q/record-data';
import type { ChangedAttributesHash, MergeOperation, RecordData } from '@ember-data/types/q/record-data';
import type { JsonApiResource, JsonApiValidationError } from '@ember-data/types/q/record-data-json-api';
import type { RecordDataStoreWrapper } from '@ember-data/types/q/record-data-store-wrapper';
import type { Dict } from '@ember-data/types/q/utils';
Expand Down Expand Up @@ -119,6 +119,9 @@ class V2TestRecordData implements RecordData {
this._storeWrapper = wrapper;
this._identifier = identifier;
}
sync(op: MergeOperation): void {
throw new Error('Method not implemented.');
}
pushData(
identifier: StableRecordIdentifier,
data: JsonApiResource,
Expand Down

0 comments on commit 5255537

Please sign in to comment.