Files
WAI_Project_VUE/node_modules/@vue/test-utils/dist/utils/vueShared.d.ts

17 lines
488 B
TypeScript
Raw Normal View History

2025-11-24 23:24:06 +08:00
export declare const camelize: (str: string) => string;
export declare const capitalize: (str: string) => string;
export declare const hyphenate: (str: string) => string;
export declare const enum ShapeFlags {
ELEMENT = 1,
FUNCTIONAL_COMPONENT = 2,
STATEFUL_COMPONENT = 4,
TEXT_CHILDREN = 8,
ARRAY_CHILDREN = 16,
SLOTS_CHILDREN = 32,
TELEPORT = 64,
SUSPENSE = 128,
COMPONENT_SHOULD_KEEP_ALIVE = 256,
COMPONENT_KEPT_ALIVE = 512,
COMPONENT = 6
}