Sign in

简柏林 / thingskit-front · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-front
  • src
  • components
  • Widget
  • types.ts
  • pref: use ModeSwitchButton replace old component
    7880b723
    ww authored
    2022-12-19 17:22:32 +0800  
    Browse Files »
types.ts 195 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
import { ExtractPropTypes } from 'vue';
import Icon from '../Icon';

export interface ModeList {
  value: string;
  label: string;
  icon?: string;
  iconProps?: ExtractPropTypes<typeof Icon>;
}