mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 10:45:20 -04:00
10 lines
493 B
TypeScript
10 lines
493 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { AppExtension } from './_base-classes/app-extension'
|
|
import { essentialAppExtensions } from './essential-app-extensions/essential-app-extensions'
|
|
import { externalLibAppExtensions } from './external-lib-app-extensions/external-lib-app-extensions'
|
|
|
|
export const allAppExtensions: AppExtension[] = [...essentialAppExtensions, ...externalLibAppExtensions]
|