| export type Mode = 'preview' | 'controller'; | |
| export interface GitHubData { | |
| idx: number; | |
| direction: LastAction; | |
| } | |
| export const defaultData: GitHubData = { | |
| idx: 0, direction: 'next' | |
| } | |
| export const videosPath = 'assets/videos'; | |
| export const realPaths = `${videosPath}/real_`; | |
| export const reversePaths = `${videosPath}/reverse_`; | |
| export type DynamicIntervals = Array<[number, number]>; | |
| export type LastSeconds = [number, number]; | |
| export type LastAction = 'next' | 'prev' | 'jump' | null; |