File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
33 * SPDX-License-Identifier: AGPL-3.0-or-later
44 */
5- import type { ActionContext , ActionContextSingle } from '../types'
5+ import type { ActionContext , ActionContextSingle } from '../types.ts '
66
77import logger from '../utils/logger.ts'
88
Original file line number Diff line number Diff line change 22 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
33 * SPDX-License-Identifier: AGPL-3.0-or-later
44 */
5- import type { ActionContext , ViewActionContext } from '../types'
5+ import type { ActionContext , ViewActionContext } from '../types.ts '
66
77import logger from '../utils/logger.ts'
88
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export * from './navigation/index.ts'
1010export * from './newMenu/index.ts'
1111export * from './node/index.ts'
1212export * from './permissions.ts'
13+ export * from './types.ts'
1314export * from './utils/index.ts'
1415
1516// Legacy export of dav utils
Original file line number Diff line number Diff line change 66import { Folder , Node } from './node/index.ts'
77import { View } from './navigation/index.ts'
88
9- type ActionContextSingle = {
9+ export type ActionContextSingle = {
1010 nodes : [ Node ] ,
1111 view : View ,
1212 folder : Folder ,
1313 content : Node [ ] ,
1414}
1515
16- type ActionContext = {
16+ export type ActionContext = {
1717 nodes : Node [ ] ,
1818 view : View ,
1919 folder : Folder ,
2020 content : Node [ ] ,
2121}
2222
23- type ViewActionContext = {
23+ export type ViewActionContext = {
2424 view : View ,
2525 folder : Folder ,
2626}
You can’t perform that action at this time.
0 commit comments