File size: 494 Bytes
1038d6b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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; |