mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Roman <ixrock@gmail.com> Co-authored-by: Jim Ehrismann <40840436+jim-docker@users.noreply.github.com>
18 lines
452 B
TypeScript
18 lines
452 B
TypeScript
import type React from "react"
|
|
import { BaseRegistry } from "./base-registry";
|
|
|
|
export interface AppPreferenceComponents {
|
|
Hint: React.ComponentType<any>;
|
|
Input: React.ComponentType<any>;
|
|
}
|
|
|
|
export interface AppPreferenceRegistration {
|
|
title: string;
|
|
components: AppPreferenceComponents;
|
|
}
|
|
|
|
export class AppPreferenceRegistry extends BaseRegistry<AppPreferenceRegistration> {
|
|
}
|
|
|
|
export const appPreferenceRegistry = new AppPreferenceRegistry()
|