/
vshmidt
/
cloudbeaver
Обзор
Документация
Войти
/
vshmidt
/
cloudbeaver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
webapp/packages/plugin-sql-editor/src/SqlDataSource/LocalStorage/ILocalStorageSqlDataSourceState.ts
18 строк
623 B
Alexey Potsetsuev
dbeaver/pro#6201 feat: ai chat query insertion (#3578)
18 июл 2025, 18:44
Не верифицирован
18 июл 2025, 18:44
36e8d1f
Код
Авторство
О чём код?
/* * 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 type { IConnectionExecutionContextInfo } from '@cloudbeaver/core-connections'; import type { ISqlDataSourceHistoryState } from '../SqlDataSourceHistory/ISqlDataSourceHistoryState.js'; export interface ILocalStorageSqlDataSourceState { script: string; name?: string; executionContext?: IConnectionExecutionContextInfo; history: ISqlDataSourceHistoryState; showOnlyResults?: boolean; }