refactor: Removes the export of QueryFormData (#28786)

This commit is contained in:
Enzo Martellucci 2024-06-06 17:50:52 +02:00 committed by GitHub
parent 5c9a79442c
commit 961cb961e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,7 @@ import sinon from 'sinon';
import fetchMock from 'fetch-mock'; import fetchMock from 'fetch-mock';
import { Dispatch } from 'redux'; import { Dispatch } from 'redux';
import { ADD_TOAST } from 'src/components/MessageToasts/actions'; import { ADD_TOAST } from 'src/components/MessageToasts/actions';
import { DatasourceType } from '@superset-ui/core'; import { DatasourceType, QueryFormData } from '@superset-ui/core';
import { import {
createDashboard, createDashboard,
createSlice, createSlice,
@ -30,7 +30,6 @@ import {
updateSlice, updateSlice,
getSlicePayload, getSlicePayload,
PayloadSlice, PayloadSlice,
QueryFormData,
} from './saveModalActions'; } from './saveModalActions';
// Define test constants and mock data using imported types // Define test constants and mock data using imported types

View File

@ -318,4 +318,3 @@ export const getSliceDashboards =
throw error; throw error;
} }
}; };
export { QueryFormData };