container.vue.d.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. declare const _default: import("vue").DefineComponent<{
  2. /**
  3. * @description layout direction for child elements
  4. */
  5. direction: {
  6. type: StringConstructor;
  7. };
  8. }, {
  9. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  10. /**
  11. * @description layout direction for child elements
  12. */
  13. direction: {
  14. type: StringConstructor;
  15. };
  16. }>> & {
  17. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
  18. }>>;
  19. slots: Readonly<{
  20. [name: string]: import("vue").Slot | undefined;
  21. }>;
  22. ns: {
  23. namespace: import("vue").Ref<string>;
  24. b: (blockSuffix?: string) => string;
  25. e: (element?: string | undefined) => string;
  26. m: (modifier?: string | undefined) => string;
  27. be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
  28. em: (element?: string | undefined, modifier?: string | undefined) => string;
  29. bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
  30. bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
  31. is: {
  32. (name: string, state: boolean | undefined): string;
  33. (name: string): string;
  34. };
  35. cssVar: (object: Record<string, string>) => Record<string, string>;
  36. cssVarName: (name: string) => string;
  37. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  38. cssVarBlockName: (name: string) => string;
  39. };
  40. isVertical: import("vue").ComputedRef<boolean>;
  41. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  42. /**
  43. * @description layout direction for child elements
  44. */
  45. direction: {
  46. type: StringConstructor;
  47. };
  48. }>>, {}>;
  49. export default _default;