// import { LocationGeneratorOptions } from '../generators/LocationGenerator' export type LocationAttributes = { ref: string } export type PersonConstructor = { $: LocationAttributes } export default class Person { public $: LocationAttributes public ref: string constructor(opts: PersonConstructor) { this.ref = opts.$.ref this.$ = opts.$ } }