Files
twenty_crm/front/src/modules/metadata/scopes/scope-internal-context/ObjectMetadataItemScopeInternalContext.ts
2023-10-31 12:38:53 +01:00

10 lines
456 B
TypeScript

import { ScopedStateKey } from '@/ui/utilities/recoil-scope/scopes-internal/types/ScopedStateKey';
import { createScopeInternalContext } from '@/ui/utilities/recoil-scope/scopes-internal/utils/createScopeInternalContext';
type ObjectMetadataItemScopeInternalContextProps = ScopedStateKey & {
objectNamePlural: string;
};
export const ObjectMetadataItemScopeInternalContext =
createScopeInternalContext<ObjectMetadataItemScopeInternalContextProps>();