/
vshmidt
/
cloudbeaver
Обзор
Документация
Войти
/
vshmidt
/
cloudbeaver
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
webapp/packages/plugin-data-export/src/IExportContext.ts
20 строк
595 B
Ainur
CB-4289 add file name param for data export (#2308)
22 янв 2024, 18:30
Не верифицирован
22 янв 2024, 18:30
bc7cd3b
Код
Авторство
О чём код?
/* * CloudBeaver - Cloud Database Manager * Copyright (C) 2020-2024 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 { IConnectionInfoParams } from '@cloudbeaver/core-connections'; import type { SqlDataFilter } from '@cloudbeaver/core-sdk'; export interface IExportContext { connectionKey: IConnectionInfoParams; contextId?: string; resultId?: string | null; containerNodePath?: string; name?: string; fileName?: string; query?: string; filter?: SqlDataFilter; }