/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * @hidden */ export interface InternalPatchable { observing: boolean; patch: Partial; getPatchAndReset(): Partial; } /** * @hidden */ export interface Patchable { internal: InternalPatchable; toJSON(): T; copy(from: Partial): this; } //# sourceMappingURL=patchable.d.ts.map