* chore: removes replaces 'import type xxx from 'xxx'' with 'import { type xxx} from 'xxx'''
* chore: remove typed imports
* chore: remove typed imports
* chore: cleanup
---------
Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
import { ViewFieldMetadata } from '@/ui/editable-field/types/ViewField';
|
|
|
|
import { ColumnDefinition } from '../types/ColumnDefinition';
|
|
|
|
export const availableTableColumnsScopedState = atomFamily<
|
|
ColumnDefinition<ViewFieldMetadata>[],
|
|
string
|
|
>({
|
|
key: 'availableTableColumnsScopedState',
|
|
default: [],
|
|
});
|