Adrià Vilanova MartÃnez | 66836fd | 2024-05-04 22:43:06 +0200 | [diff] [blame] | 1 | import { Dependency, ExtraInfoDependency } from '../../../common/architecture/dependenciesProvider/DependenciesProvider'; |
| 2 | import { |
| 3 | ScriptEnvironment, |
| 4 | ScriptPage, |
| 5 | ScriptRunPhase, |
| 6 | } from '../../../common/architecture/scripts/Script'; |
| 7 | import SetUpDependenciesScript from '../../../common/architecture/scripts/setUpDependencies/SetUpDependenciesScript'; |
| 8 | |
| 9 | export default class CCExtraInfoDependencySetUpScript extends SetUpDependenciesScript { |
| 10 | public priority = 101; |
| 11 | public page = ScriptPage.CommunityConsole; |
| 12 | public environment = ScriptEnvironment.ContentScript; |
| 13 | public runPhase = ScriptRunPhase.Start; |
| 14 | public dependencies: Dependency[] = [ExtraInfoDependency]; |
| 15 | } |