Vanilla-friendly UI helper bag injected into custom module renderers.

interface AsukaModuleUiHelpers {
    components: Record<string, unknown>;
    el: typeof h;
    h: typeof h;
    icon: ((name: string, options?: {
        className?: string;
        size?: number;
    }) => unknown);
}

Properties

Properties

components: Record<string, unknown>
el: typeof h
h: typeof h
icon: ((name: string, options?: {
    className?: string;
    size?: number;
}) => unknown)