@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
14 lines (13 loc) • 407 B
TypeScript
import { FC } from '@dineug/r-html';
import { ValuesType } from '../../../internal-types';
export declare const Lnb: {
readonly preferences: "Preferences";
readonly shortcuts: "Shortcuts";
};
export type Lnb = ValuesType<typeof Lnb>;
export type SettingsLnbProps = {
value: Lnb;
onChange: (value: Lnb) => void;
};
declare const SettingsLnb: FC<SettingsLnbProps>;
export default SettingsLnb;