mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Type action names (#1079)
* Type action names * improve typing Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
parent
9cc1037e7b
commit
4442addc02
2 changed files with 39 additions and 5 deletions
|
@ -4,13 +4,14 @@ import {
|
|||
ActionsManagerInterface,
|
||||
UpdaterFn,
|
||||
ActionFilterFn,
|
||||
ActionName,
|
||||
} from "./types";
|
||||
import { ExcalidrawElement } from "../element/types";
|
||||
import { AppState } from "../types";
|
||||
import { t } from "../i18n";
|
||||
|
||||
export class ActionManager implements ActionsManagerInterface {
|
||||
actions: { [keyProp: string]: Action } = {};
|
||||
actions = {} as ActionsManagerInterface["actions"];
|
||||
|
||||
updater: UpdaterFn;
|
||||
|
||||
|
@ -77,7 +78,7 @@ export class ActionManager implements ActionsManagerInterface {
|
|||
}));
|
||||
}
|
||||
|
||||
renderAction = (name: string) => {
|
||||
renderAction = (name: ActionName) => {
|
||||
if (this.actions[name] && "PanelComponent" in this.actions[name]) {
|
||||
const action = this.actions[name];
|
||||
const PanelComponent = action.PanelComponent!;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue