Adrià Vilanova MartÃnez | 58cc67c | 2024-04-21 16:43:01 +0200 | [diff] [blame] | 1 | import { |
| 2 | AutoRefreshDependency, |
| 3 | Dependency, |
| 4 | } from '../../../common/architecture/dependenciesProvider/DependenciesProvider'; |
| 5 | import { |
| 6 | ScriptEnvironment, |
| 7 | ScriptPage, |
| 8 | ScriptRunPhase, |
| 9 | } from '../../../common/architecture/scripts/Script'; |
| 10 | import SetUpDependenciesScript from '../../../common/architecture/scripts/setUpDependencies/SetUpDependenciesScript'; |
| 11 | |
| 12 | export default class AutoRefreshSetUpScript extends SetUpDependenciesScript { |
| 13 | public priority = 100; |
| 14 | public page = ScriptPage.CommunityConsole; |
| 15 | public environment = ScriptEnvironment.ContentScript; |
| 16 | public runPhase = ScriptRunPhase.Start; |
| 17 | public dependencies: Dependency[] = [AutoRefreshDependency]; |
| 18 | } |