vueShared.d.ts 488 B

12345678910111213141516
  1. export declare const camelize: (str: string) => string;
  2. export declare const capitalize: (str: string) => string;
  3. export declare const hyphenate: (str: string) => string;
  4. export declare const enum ShapeFlags {
  5. ELEMENT = 1,
  6. FUNCTIONAL_COMPONENT = 2,
  7. STATEFUL_COMPONENT = 4,
  8. TEXT_CHILDREN = 8,
  9. ARRAY_CHILDREN = 16,
  10. SLOTS_CHILDREN = 32,
  11. TELEPORT = 64,
  12. SUSPENSE = 128,
  13. COMPONENT_SHOULD_KEEP_ALIVE = 256,
  14. COMPONENT_KEPT_ALIVE = 512,
  15. COMPONENT = 6
  16. }