2025-03-24 22:56:10 +01:00

11 lines
345 B
TypeScript

import { Process, FrameData, CancelSync, FlushSync, Sync } from "./types";
declare const sync: Sync;
declare const cancelSync: CancelSync;
declare const flushSync: FlushSync;
declare const getFrameData: () => {
delta: number;
timestamp: number;
};
export default sync;
export { cancelSync, flushSync, getFrameData, FrameData, Process };