Skip to content
Snippets Groups Projects
Unverified Commit 46eeb243 authored by Benoit Vinay's avatar Benoit Vinay Committed by GitHub
Browse files

Convert Action to TypeScript (#23299)

* Convert Action to TypeScript

* Delete possible unused ActionClick

* Misc in Action

* Misc

* Delete Action files
parent 3cfe3355
No related branches found
No related tags found
No related merge requests found
export default class Action {
// eslint-disable-next-line @typescript-eslint/no-empty-function
perform() {}
}
export class ActionClick {}
import Action from "metabase-lib/lib/Action";
describe("Action", () => {
describe("perform", () => {
it("should perform the action", () => {
new Action().perform();
});
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment