Files
mtdb_movie/common/resources/client/background-selector/bg-selector-tab-props.tsx
T
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02: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;
}