blob: a1efc2e43e919601ac5d137e303e74f7f699bd3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export default interface URLRepository {
getCurrentURL(): string;
}
export class URLRepositoryImpl implements URLRepository {
getCurrentURL(): string {
return window.location.href;
}
}
|