import type { FlagMediaName } from './FlagMediaName';

export type FlagShowMediaOptions = {
  screens: {
    /** Bit 0 */
    left: boolean;
    /** Bit 1 */
    right: boolean;
    /** Bit 2 */
    front: boolean;
    /** Bit 3 */
    back: boolean;
  };
  mediaSourceName: FlagMediaName;
};
