mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 23:00:03 +00:00
* feat(studio): expose timeline treegrid semantics * feat(studio): coordinate logical timeline focus * feat(studio): add timeline keyboard controls * docs(studio): document timeline keyboard navigation
16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
export interface TimelineFocusRequest {
|
|
id: string;
|
|
projectId: string | null;
|
|
sessionEpoch: number;
|
|
nonce: number;
|
|
}
|
|
|
|
export function createTimelineFocusRequest(
|
|
id: string,
|
|
projectId: string | null,
|
|
sessionEpoch: number,
|
|
nonce: number,
|
|
): TimelineFocusRequest {
|
|
return { id, projectId, sessionEpoch, nonce };
|
|
}
|