Files
mtdb_movie/common/resources/client/background-selector/bg-selector-tab-props.tsx
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01:00

11 lines
343 B
TypeScript
Executable File

import {BackgroundSelectorConfig} from '@common/background-selector/background-selector-config';
export interface BgSelectorTabProps<T extends BackgroundSelectorConfig> {
value?: T;
onChange: (value: T | null) => void;
className?: string;
isInsideDialog?: boolean;
positionSelector?: 'simple' | 'advanced';
diskPrefix?: string;
}