aboutsummaryrefslogtreecommitdiff
path: root/src/client/northstar/core/BaseObject.ts
blob: f1761e6433fad06cc7e7d541c8bcc08804d0725d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { IEquatable } from '../utils/IEquatable'
import { IDisposable } from '../utils/IDisposable'

export class BaseObject implements IEquatable, IDisposable {

    public Equals(other: Object): boolean {
        return this === other;
    }

    public Dispose(): void {
    }
}