Sign in

简柏林 / thingskit-scada · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-scada
  • types
  • utils.d.ts
  • perf: 重构组态
    06a645b4
    ww authored
    2023-10-31 09:21:38 +0800  
    Browse Files »
utils.d.ts 136 Bytes
Raw Blame History Permalink
1 2 3 4 5 6
import type { ComputedRef, Ref } from 'vue'

export type DynamicProps<T> = {
  [P in keyof T]: Ref<T[P]> | T[P] | ComputedRef<T[P]>;
}