UNPKG

488 BTypeScriptView Raw
1export declare const camelize: (str: string) => string;
2export declare const capitalize: (str: string) => string;
3export declare const hyphenate: (str: string) => string;
4export 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}