UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

22 lines (21 loc) 521 B
import React from 'react'; type QuickSwitcherResultDetail = { type: 'composition'; compositionType: 'composition' | 'still'; } | { type: 'menu-item'; } | { type: 'search-result'; titleLine: string; subtitleLine: string; }; export type TQuickSwitcherResult = { title: string; id: string; onSelected: () => void; } & QuickSwitcherResultDetail; export declare const QuickSwitcherResult: React.FC<{ readonly result: TQuickSwitcherResult; readonly selected: boolean; }>; export {};