/
vshmidt
/
cloudbeaver
Обзор
Документация
Войти
/
vshmidt
/
cloudbeaver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
webapp/packages/plugin-data-grid/src/TableSelectionContext.ts
21 строка
546 B
alex
dbeaver/pro#5481 add GrantManagementTable component (#3841)
28 окт 2025, 13:56
Не верифицирован
28 окт 2025, 13:56
a2eab09
Код
Авторство
О чём код?
/* * CloudBeaver - Cloud Database Manager * Copyright (C) 2020-2025 DBeaver Corp and others * * Licensed under the Apache License, Version 2.0. * you may not use this file except in compliance with the License. */ import { createContext } from 'react'; export interface ITableSelection { readonly list: string[]; readonly selected: string[]; state: Set<string>; keys: string[]; select(id: string): void; selectRoot(): void; clear(): void; } export const TableSelectionContext = createContext<ITableSelection | null>(null);