footer.vue.d.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import type { CSSProperties } from 'vue';
  2. declare const _default: import("vue").DefineComponent<{
  3. /**
  4. * @description height of the footer
  5. */
  6. height: {
  7. type: StringConstructor;
  8. default: null;
  9. };
  10. }, {
  11. props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
  12. /**
  13. * @description height of the footer
  14. */
  15. height: {
  16. type: StringConstructor;
  17. default: null;
  18. };
  19. }>> & {
  20. [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | 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. style: import("vue").ComputedRef<CSSProperties>;
  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 height of the footer
  44. */
  45. height: {
  46. type: StringConstructor;
  47. default: null;
  48. };
  49. }>>, {
  50. height: string;
  51. }>;
  52. export default _default;