UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

17 lines (16 loc) 594 B
/** * One callback registered in the shared avatar animation scheduler. * * @private utility of the avatar rendering system */ type AvatarAnimationListener = (now: number) => void; /** * Registers one avatar animation callback in the shared animation loop. * * @param avatarAnimationListener Frame callback invoked on every animation frame. * @returns Cleanup function that unregisters the callback. * * @private utility of the avatar rendering system */ export declare function retainAvatarAnimationListener(avatarAnimationListener: AvatarAnimationListener): () => void; export {};