123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- export declare const camelize: (str: string) => string;
- export declare const capitalize: (str: string) => string;
- export declare const def: (obj: object, key: string | symbol, value: any) => void;
- export declare const EMPTY_ARR: readonly never[];
- export declare const EMPTY_OBJ: {
- readonly [key: string]: any;
- };
- export declare function escapeHtml(string: unknown): string;
- export declare function escapeHtmlComment(src: string): string;
- export declare const extend: {
- <T, U>(target: T, source: U): T & U;
- <T_1, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
- <T_2, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
- (target: object, ...sources: any[]): any;
- };
- export declare function generateCodeFrame(source: string, start?: number, end?: number): string;
- export declare const getGlobalThis: () => any;
- export declare const hasChanged: (value: any, oldValue: any) => boolean;
- export declare const hasOwn: (val: object, key: string | symbol) => key is never;
- export declare const hyphenate: (str: string) => string;
- export declare function includeBooleanAttr(value: unknown): boolean;
- export declare const invokeArrayFns: (fns: Function[], arg?: any) => void;
- export declare const isArray: (arg: any) => arg is any[];
- export declare const isBooleanAttr: (key: string) => boolean;
- export declare const isDate: (val: unknown) => val is Date;
- export declare const isFunction: (val: unknown) => val is Function;
- export declare const isGloballyWhitelisted: (key: string) => boolean;
- export declare const isHTMLTag: (key: string) => boolean;
- export declare const isIntegerKey: (key: unknown) => boolean;
- export declare const isKnownHtmlAttr: (key: string) => boolean;
- export declare const isKnownSvgAttr: (key: string) => boolean;
- export declare const isMap: (val: unknown) => val is Map<any, any>;
- export declare const isModelListener: (key: string) => boolean;
- export declare const isNoUnitNumericStyleProp: (key: string) => boolean;
- export declare const isObject: (val: unknown) => val is Record<any, any>;
- export declare const isOn: (key: string) => boolean;
- export declare const isPlainObject: (val: unknown) => val is object;
- export declare const isPromise: <T = any>(val: unknown) => val is Promise<T>;
- export declare const isReservedProp: (key: string) => boolean;
- export declare const isSet: (val: unknown) => val is Set<any>;
- export declare const isSpecialBooleanAttr: (key: string) => boolean;
- export declare function isSSRSafeAttrName(name: string): boolean;
- export declare const isString: (val: unknown) => val is string;
- export declare const isSVGTag: (key: string) => boolean;
- export declare const isSymbol: (val: unknown) => val is symbol;
- export declare const isVoidTag: (key: string) => boolean;
- export declare function looseEqual(a: any, b: any): boolean;
- export declare function looseIndexOf(arr: any[], val: any): number;
- export declare function makeMap(str: string, expectsLowerCase?: boolean): (key: string) => boolean;
- export declare const NO: () => boolean;
- export declare const NOOP: () => void;
- export declare function normalizeClass(value: unknown): string;
- export declare type NormalizedStyle = Record<string, string | number>;
- export declare function normalizeProps(props: Record<string, any> | null): Record<string, any> | null;
- export declare function normalizeStyle(value: unknown): NormalizedStyle | string | undefined;
- export declare const objectToString: () => string;
- export declare function parseStringStyle(cssText: string): NormalizedStyle;
- export declare const PatchFlagNames: {
- [x: number]: string;
- };
- export declare const enum PatchFlags {
-
- TEXT = 1,
-
- CLASS = 2,
-
- STYLE = 4,
-
- PROPS = 8,
-
- FULL_PROPS = 16,
-
- HYDRATE_EVENTS = 32,
-
- STABLE_FRAGMENT = 64,
-
- KEYED_FRAGMENT = 128,
-
- UNKEYED_FRAGMENT = 256,
-
- NEED_PATCH = 512,
-
- DYNAMIC_SLOTS = 1024,
-
- DEV_ROOT_FRAGMENT = 2048,
-
-
- HOISTED = -1,
-
- BAIL = -2
- }
- export declare const propsToAttrMap: Record<string, string | undefined>;
- export declare const remove: <T>(arr: T[], el: T) => void;
- 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
- }
- export declare const enum SlotFlags {
-
- STABLE = 1,
-
- DYNAMIC = 2,
-
- FORWARDED = 3
- }
- export declare const slotFlagsText: {
- 1: string;
- 2: string;
- 3: string;
- };
- export declare function stringifyStyle(styles: NormalizedStyle | string | undefined): string;
- export declare const toDisplayString: (val: unknown) => string;
- export declare const toHandlerKey: (str: string) => string;
- export declare const toNumber: (val: any) => any;
- export declare const toRawType: (value: unknown) => string;
- export declare const toTypeString: (value: unknown) => string;
- export { }
|