Extensibility, TypeScript and lazy loading
This commit is contained in:
parent
41160ff08e
commit
607e33feba
11 changed files with 296 additions and 297 deletions
5
src/components/views/elements/effects/ICanvasEffect.ts
Normal file
5
src/components/views/elements/effects/ICanvasEffect.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
export default interface ICanvasEffect {
|
||||
start: (canvas: HTMLCanvasElement, timeout?: number) => Promise<void>,
|
||||
stop: () => Promise<void>,
|
||||
isRunning: boolean
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue