Moved effect options to configuration
This commit is contained in:
parent
cb79e38377
commit
3ea4560019
4 changed files with 37 additions and 8 deletions
|
@ -1,3 +1,7 @@
|
|||
export interface ICanvasEffectConstructable {
|
||||
new(options?: { [key: string]: any }): ICanvasEffect
|
||||
}
|
||||
|
||||
export default interface ICanvasEffect {
|
||||
start: (canvas: HTMLCanvasElement, timeout?: number) => Promise<void>,
|
||||
stop: () => Promise<void>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue