mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 22:41:48 +03:00
5 lines
171 B
TypeScript
5 lines
171 B
TypeScript
|
export default interface ICanvasEffect {
|
||
|
start: (canvas: HTMLCanvasElement, timeout?: number) => Promise<void>,
|
||
|
stop: () => Promise<void>,
|
||
|
isRunning: boolean
|
||
|
}
|