You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/docker/queries/utils/index.ts

15 lines
340 B

import { queryKeys as containerQueryKeys } from './container';
import { queryKeys as rootQueryKeys } from './root';
export const queryKeys = {
...rootQueryKeys,
...containerQueryKeys,
};
export {
buildDockerSnapshotContainersUrl,
type ContainersQueryParams,
} from './container';
export { buildDockerSnapshotUrl } from './root';