refactor(pwa): ♻️ rename Strategy to FetchStrategy

This commit is contained in:
Julien Oculi 2024-07-18 15:51:38 +02:00
parent 96a4199fa2
commit 5a5dd81822

View file

@ -1,7 +1,7 @@
export class Strategy { export class FetchStrategy {
private constructor() { private constructor() {
throw new Error( throw new Error(
'fetch Strategy is not instantiable and only expose static methods', 'FetchStrategy is not instantiable and only expose static methods',
) )
} }