版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

123456
  1. export { camelize, hyphenate, hyphenate as kebabCase, } from '@vue/shared';
  2. /**
  3. * fork from {@link https://github.com/sindresorhus/escape-string-regexp}
  4. */
  5. export declare const escapeStringRegexp: (string?: string) => string;
  6. export declare const capitalize: <T extends string>(str: T) => Capitalize<T>;