7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit'
|
|
|
|
export interface FormatSelectionState {
|
|
bestFormat: string
|
|
audioFormat: string
|
|
videoFormat: string
|
|
} |