aboutsummaryrefslogtreecommitdiff
path: root/src/client/northstar/core/BaseObject.ts
blob: ed3818071e7abf83996f86733c5336ca0470001f (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 {
    }
}