This commit is contained in:
Maciej Caderek
2022-02-02 06:03:55 +01:00
parent 9e232ba133
commit 4fa2ba1fb9
5 changed files with 71 additions and 19 deletions

View File

@@ -161,3 +161,16 @@ export type Position = {
placement: Placement;
last: boolean;
};
export type Handlers = {
prev(): void;
next(): void;
first(): void;
last(): void;
toggleBorder(): void;
showBorder(): void;
hideBorder(): void;
toggleExtraInfo(): void;
flip(): void;
togglePlay(): void;
};