Skip to content

Commit

Permalink
Remove invalid internals in Document
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed Dec 18, 2023
1 parent 3121205 commit 5ef1e8f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/document/document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -858,8 +858,6 @@ export class Document<T, P extends Indexable = Indexable> {

/**
* `hasLocalChanges` returns whether this document has local changes or not.
*
* @internal
*/
public hasLocalChanges(): boolean {
return this.localChanges.length > 0;
Expand Down Expand Up @@ -910,8 +908,6 @@ export class Document<T, P extends Indexable = Indexable> {

/**
* `getKey` returns the key of this document.
*
* @internal
*/
public getKey(): string {
return this.key;
Expand All @@ -928,8 +924,6 @@ export class Document<T, P extends Indexable = Indexable> {

/**
* `getStatus` returns the status of this document.
*
* @internal
*/
public getStatus(): DocumentStatus {
return this.status;
Expand Down

0 comments on commit 5ef1e8f

Please sign in to comment.