版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

123456789101112131415161718192021
  1. // TODO install @types/splitpanes once updated
  2. declare module 'splitpanes' {
  3. import { Component } from 'vue';
  4. export interface SplitpaneProps {
  5. horizontal: boolean;
  6. pushOtherPanes: boolean;
  7. dblClickSplitter: boolean;
  8. firstSplitter: boolean;
  9. }
  10. export interface PaneProps {
  11. size: number | string;
  12. minSize: number | string;
  13. maxSize: number | string;
  14. }
  15. export type Pane = Component<PaneProps>
  16. export const Pane: Pane;
  17. export const Splitpanes: Component<SplitpaneProps>;
  18. }