aboutsummaryrefslogtreecommitdiff
path: root/src/content/repositories/AddressRepository.ts
blob: f200bf25f11c2b02dc3fb279e67bf9ff20da6abb (plain) (blame)
1
2
3
4
5
6
7
8
9
export default interface AddressRepository {
  getCurrentURL(): URL;
}

export class AddressRepositoryImpl implements AddressRepository {
  getCurrentURL(): URL {
    return new URL(window.location.href);
  }
}