// SPDX-License-Identifier: Apache-2.0

export interface Facade<T> {
  readonly encapsulatedObject: T;
}
