Files
yt-dlp-webui/frontend/src/features/formatSelection/formatSelectionSlice.ts
Marco 2ae4a5da3d New home view layout (#58)
* Home layout refactor, moved new download to dialog

* sort downloads by date
2023-06-23 10:48:38 +02:00

7 lines
169 B
TypeScript

import { createSlice, PayloadAction } from '@reduxjs/toolkit'
export interface FormatSelectionState {
bestFormat: string
audioFormat: string
videoFormat: string
}