mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* welcome/landing page Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix integration tests Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { BaseRegistry } from "./base-registry";
|
|
|
|
export interface WelcomeMenuRegistration {
|
|
title: string;
|
|
icon: string;
|
|
click: () => void | Promise<void>;
|
|
}
|
|
|
|
export class WelcomeMenuRegistry extends BaseRegistry<WelcomeMenuRegistration> {}
|
|
|
|
export const welcomeMenuRegistry = new WelcomeMenuRegistry();
|