17 lines
488 B
TypeScript
17 lines
488 B
TypeScript
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
|
|
}
|