mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-04 08:51:05 +02:00
13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const SelectedItemActionAtom = atom<
|
|
| {
|
|
path: string;
|
|
action: 'view' | 'edit' | 'delete';
|
|
}
|
|
| undefined
|
|
>({
|
|
key: 'SelectedItemActionAtom',
|
|
default: undefined
|
|
});
|