export default class Bar {
	private bar: string;
	constructor () {
		this.bar = 'bar';
	}
	foo: number;
	qat: { foo?: string; } = {};
}
