UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

6 lines (5 loc) 467 B
import React from 'react'; import type { RemoteOptionsProps } from 'jamis-core'; import type { NavLink, NavigationProps } from '../types'; export type NavigationWithRemoteOptionsRef = Pick<RemoteOptionsProps<NavLink>, 'updateConfig' | 'getConfig' | 'deferLoadConfig' | 'loadConfig'>; export declare const NavigationWithRemoteOptions: React.ForwardRefExoticComponent<Pick<NavigationProps, keyof NavigationProps> & React.RefAttributes<NavigationWithRemoteOptionsRef>>;