12 lines
422 B
TypeScript
12 lines
422 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
// helpers
|
|
import type { TAssetMetaDataRecord } from "@/helpers/assets";
|
|
// local imports
|
|
import type { ADDITIONAL_EXTENSIONS } from "./extensions";
|
|
|
|
export const ADDITIONAL_ASSETS_META_DATA_RECORD: Partial<Record<ADDITIONAL_EXTENSIONS, TAssetMetaDataRecord>> = {};
|