Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « OCP « src « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d5edd5a9d00ebc2fef04adc462f8a21fef188b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 *
 */
import * as AppConfig from './appconfig'
import * as Comments from './comments'
import * as InitialState from './initialstate'
import Loader from './loader'
import Collaboration from './collaboration'
import Toast from './toast'
import * as WhatsNew from './whatsnew'

/** @namespace OCP */
export default {
	AppConfig,
	Collaboration,
	Comments,
	InitialState,
	Loader,
	Toast,
	WhatsNew
}