vconsole.min.d.ts 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237
  1. /// <reference path="../build/vendor.d.ts" />
  2. declare module "core/options.interface" {
  3. export interface VConsoleLogOptions {
  4. maxLogNumber?: number;
  5. showTimestamps?: boolean;
  6. }
  7. export interface VConsoleNetworkOptions {
  8. maxNetworkNumber?: number;
  9. ignoreUrlRegExp?: RegExp;
  10. }
  11. export type VConsoleAvailableStorage = 'cookies' | 'localStorage' | 'sessionStorage' | 'wxStorage';
  12. export interface VConsoleStorageOptions {
  13. defaultStorages?: VConsoleAvailableStorage[];
  14. }
  15. export interface VConsoleOptions {
  16. target?: string | HTMLElement;
  17. defaultPlugins?: ('system' | 'network' | 'element' | 'storage')[];
  18. theme?: '' | 'dark' | 'light';
  19. disableLogScrolling?: boolean;
  20. pluginOrder?: string[];
  21. onReady?: () => void;
  22. log?: VConsoleLogOptions;
  23. network?: VConsoleNetworkOptions;
  24. storage?: VConsoleStorageOptions;
  25. /**
  26. * @deprecated Since v3.12.0, use `log.maxLogNumber`.
  27. */
  28. maxLogNumber?: number;
  29. /**
  30. * @deprecated Since v3.12.0, use `network.maxNetworkNumber`.
  31. */
  32. maxNetworkNumber?: number;
  33. /**
  34. * @deprecated Since v3.12.0.
  35. */
  36. onClearLog?: () => void;
  37. }
  38. }
  39. declare module "lib/tool" {
  40. /**
  41. * Utility Functions
  42. */
  43. /**
  44. * get formatted date by timestamp
  45. */
  46. export function getDate(time: number): {
  47. time: number;
  48. year: number;
  49. month: string | number;
  50. day: string | number;
  51. hour: string | number;
  52. minute: string | number;
  53. second: string | number;
  54. millisecond: string | number;
  55. };
  56. /**
  57. * Determine whether a value is of a specific type.
  58. */
  59. export function isNumber(value: any): boolean;
  60. export function isBigInt(value: any): boolean;
  61. export function isString(value: any): boolean;
  62. export function isArray(value: any): boolean;
  63. export function isBoolean(value: any): boolean;
  64. export function isUndefined(value: any): boolean;
  65. export function isNull(value: any): boolean;
  66. export function isSymbol(value: any): boolean;
  67. export function isObject(value: any): boolean;
  68. export function isFunction(value: any): boolean;
  69. export function isElement(value: any): boolean;
  70. export function isWindow(value: any): boolean;
  71. export function isIterable(value: any): boolean;
  72. /**
  73. * Get the prototype name of an object
  74. */
  75. export function getPrototypeName(value: any): string;
  76. /**
  77. * Get an object's constructor name.
  78. */
  79. export function getObjName(obj: any): string;
  80. /**
  81. * check whether an object is plain (using {})
  82. * @param object obj
  83. * @return boolean
  84. */
  85. export function isPlainObject(obj: any): boolean;
  86. /**
  87. * Escape HTML to XSS-safe text.
  88. */
  89. export function htmlEncode(text: string | number): string;
  90. /**
  91. * Convert a text's invisible characters to visible characters.
  92. */
  93. export function getVisibleText(text: string): string;
  94. /**
  95. * A safe `JSON.stringify` method.
  96. */
  97. export function safeJSONStringify(obj: any, opt?: {
  98. maxDepth?: number;
  99. keyMaxLen?: number;
  100. pretty?: boolean;
  101. standardJSON?: boolean;
  102. }): string;
  103. /**
  104. * Call original `JSON.stringify` and catch unknown exceptions.
  105. */
  106. export function JSONStringify(value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;
  107. /**
  108. * Get the bytes of a string.
  109. * @example 'a' = 1
  110. * @example '好' = 3
  111. */
  112. export function getStringBytes(str: string): number;
  113. /**
  114. * Convert bytes number to 'MB' or 'KB' string.
  115. */
  116. export function getBytesText(bytes: number): string;
  117. /**
  118. * Get a string within a limited max length.
  119. * The byte size of the string will be appended to the string when reached the limit.
  120. * @return 'some string...(3.1 MB)'
  121. */
  122. export function getStringWithinLength(str: string, maxLen: number): string;
  123. /**
  124. * Sore an `string[]` by string.
  125. */
  126. export function sortArray(arr: string[]): string[];
  127. /**
  128. * Get enumerable keys of an object or array.
  129. */
  130. export function getEnumerableKeys(obj: any): string[];
  131. /**
  132. * Get enumerable and non-enumerable keys of an object or array.
  133. */
  134. export function getEnumerableAndNonEnumerableKeys(obj: any): string[];
  135. /**
  136. * Get non-enumerable keys of an object or array.
  137. */
  138. export function getNonEnumerableKeys(obj: any): string[];
  139. export function getSymbolKeys(obj: any): symbol[];
  140. /**
  141. * localStorage methods
  142. */
  143. export function setStorage(key: string, value: string): void;
  144. export function getStorage(key: string): string;
  145. /**
  146. * Generate a 6-digit unique string with prefix `"__vc_" + ${prefix}`
  147. */
  148. export function getUniqueID(prefix?: string): string;
  149. /**
  150. * Determine whether it is inside a WeChat Miniprogram.
  151. */
  152. export function isWxEnv(): boolean;
  153. /**
  154. * Call a WeChat Miniprogram method. E.g: `wx.getStorageSync()`.
  155. */
  156. export function callWx(method: string, ...args: any[]): any;
  157. }
  158. declare module "lib/query" {
  159. const $: {
  160. /**
  161. * get single element
  162. * @public
  163. */
  164. one: (selector: string, contextElement?: Element | Document) => HTMLElement;
  165. /**
  166. * get multiple elements
  167. * @public
  168. */
  169. all: (selector: string, contextElement?: Element | Document) => HTMLElement[];
  170. /**
  171. * add className(s) to an or multiple element(s)
  172. * @public
  173. */
  174. addClass: ($el: Element | Element[], className: string) => void;
  175. /**
  176. * remove className(s) from an or multiple element(s)
  177. * @public
  178. */
  179. removeClass: ($el: Element | Element[], className: string) => void;
  180. /**
  181. * see whether an element contains a className
  182. * @public
  183. */
  184. hasClass: ($el: Element, className: string) => boolean;
  185. /**
  186. * bind an event to element(s)
  187. * @public
  188. */
  189. bind: ($el: Element | Element[], eventType: any, fn: any, useCapture?: boolean) => void;
  190. /**
  191. * delegate an event to a parent element
  192. * @public
  193. * @param $el parent element
  194. * @param eventType name of the event
  195. * @param selector target's selector
  196. * @param fn callback function
  197. */
  198. delegate: ($el: Element, eventType: string, selector: string, fn: (event: Event, $target: HTMLElement) => void) => void;
  199. /**
  200. * Remove all child elements of an element.
  201. */
  202. removeChildren($el: Element): Element;
  203. };
  204. /**
  205. * export
  206. */
  207. export default $;
  208. }
  209. declare module "lib/model" {
  210. type AConstructorTypeOf<T, U extends any[] = any[]> = new (...args: U) => T;
  211. export class VConsoleModel {
  212. static singleton: {
  213. [ctorName: string]: VConsoleModel;
  214. };
  215. protected _onDataUpdateCallbacks: Function[];
  216. /**
  217. * Get a singleton of a model.
  218. */
  219. static getSingleton<T extends VConsoleModel>(ctor: AConstructorTypeOf<T>, ctorName: string): T;
  220. }
  221. export default VConsoleModel;
  222. }
  223. declare module "lib/pluginExporter" {
  224. import type { VConsoleModel } from "lib/model";
  225. export class VConsolePluginExporter {
  226. protected model: VConsoleModel;
  227. protected pluginId: string;
  228. constructor(pluginId: string);
  229. destroy(): void;
  230. }
  231. }
  232. declare module "lib/plugin" {
  233. import { VConsolePluginExporter } from "lib/pluginExporter";
  234. import type { VConsole } from "core/core";
  235. export type IVConsolePluginEvent = (data?: any) => void;
  236. export type IVConsolePluginEventName = 'init' | 'renderTab' | 'addTopBar' | 'addTool' | 'ready' | 'remove' | 'updateOption' | 'showConsole' | 'hideConsole' | 'show' | 'hide';
  237. export interface IVConsoleTopbarOptions {
  238. name: string;
  239. className: string;
  240. actived?: boolean;
  241. data?: {
  242. [key: string]: string;
  243. };
  244. onClick?: (e: Event, data?: any) => any;
  245. }
  246. export interface IVConsoleToolbarOptions {
  247. name: string;
  248. global?: boolean;
  249. data?: {
  250. [key: string]: string;
  251. };
  252. onClick?: (e: Event, data?: any) => any;
  253. }
  254. export interface IVConsoleTabOptions {
  255. fixedHeight?: boolean;
  256. }
  257. /**
  258. * vConsole Plugin Base Class
  259. */
  260. export class VConsolePlugin {
  261. isReady: boolean;
  262. eventMap: Map<IVConsolePluginEventName, IVConsolePluginEvent>;
  263. exporter?: VConsolePluginExporter;
  264. protected _id: string;
  265. protected _name: string;
  266. protected _vConsole: VConsole;
  267. constructor(...args: any[]);
  268. get id(): string;
  269. set id(value: string);
  270. get name(): string;
  271. set name(value: string);
  272. get vConsole(): VConsole;
  273. set vConsole(value: VConsole);
  274. /**
  275. * Register an event
  276. * @public
  277. * @param IVConsolePluginEventName
  278. * @param IVConsolePluginEvent
  279. */
  280. on(eventName: IVConsolePluginEventName, callback: IVConsolePluginEvent): this;
  281. onRemove(): void;
  282. /**
  283. * Trigger an event.
  284. */
  285. trigger(eventName: IVConsolePluginEventName, data?: any): this;
  286. protected bindExporter(): void;
  287. protected unbindExporter(): void;
  288. protected getUniqueID(prefix?: string): string;
  289. }
  290. export default VConsolePlugin;
  291. }
  292. declare module "lib/sveltePlugin" {
  293. import VConsolePlugin from "lib/plugin";
  294. import { SvelteComponent } from "vendor/svelte";
  295. export class VConsoleSveltePlugin<T extends {} = {}> extends VConsolePlugin {
  296. CompClass: typeof SvelteComponent;
  297. compInstance?: SvelteComponent;
  298. initialProps: T;
  299. constructor(id: string, name: string, CompClass: typeof SvelteComponent, initialProps: T);
  300. onReady(): void;
  301. onRenderTab(callback: any): void;
  302. onRemove(): void;
  303. }
  304. }
  305. declare module "core/core.model" {
  306. export const contentStore: {
  307. subscribe: (this: void, run: import("vendor/svelte/store").Subscriber<{
  308. updateTime: number;
  309. }>, invalidate?: (value?: {
  310. updateTime: number;
  311. }) => void) => import("vendor/svelte/store").Unsubscriber;
  312. set: (this: void, value: {
  313. updateTime: number;
  314. }) => void;
  315. update: (this: void, updater: import("vendor/svelte/store").Updater<{
  316. updateTime: number;
  317. }>) => void;
  318. updateTime: () => void;
  319. };
  320. }
  321. declare module "log/logTool" {
  322. import type { IVConsoleLog, IVConsoleLogData } from "log/log.model";
  323. /**
  324. * Get a value's text content and its type.
  325. */
  326. export const getValueTextAndType: (val: any, wrapString?: boolean) => {
  327. text: any;
  328. valueType: string;
  329. };
  330. /**
  331. * A simple parser to get `[` or `]` information.
  332. */
  333. export const getLastIdentifier: (text: string) => {
  334. front: {
  335. text: string;
  336. pos: number;
  337. before: string;
  338. after: string;
  339. };
  340. back: {
  341. text: string;
  342. pos: number;
  343. before: string;
  344. after: string;
  345. };
  346. };
  347. export const isMatchedFilterText: (log: IVConsoleLog, filterText: string) => boolean;
  348. /**
  349. * Styling log output (`%c`), or string substitutions (`%s`, `%d`, `%o`).
  350. * Apply to the first log only.
  351. */
  352. export const getLogDatasWithFormatting: (origDatas: any[]) => IVConsoleLogData[];
  353. /**
  354. * An empty class for rendering views.
  355. */
  356. export class VConsoleUninvocatableObject {
  357. }
  358. }
  359. declare module "log/log.store" {
  360. import type { Writable } from "vendor/svelte/store";
  361. import type { IVConsoleLog } from "log/log.model";
  362. export interface IVConsoleLogStore {
  363. logList: IVConsoleLog[];
  364. }
  365. /**
  366. * Log Store Factory
  367. */
  368. export class VConsoleLogStore {
  369. static storeMap: {
  370. [pluginId: string]: Writable<IVConsoleLogStore>;
  371. };
  372. /**
  373. * Create a store.
  374. */
  375. static create(pluginId: string): Writable<IVConsoleLogStore>;
  376. /**
  377. * Delete a store.
  378. */
  379. static delete(pluginId: string): void;
  380. /**
  381. * Get a store by pluginId,
  382. */
  383. static get(pluginId: string): Writable<IVConsoleLogStore>;
  384. /**
  385. * Get a store's raw data.
  386. */
  387. static getRaw(pluginId: string): IVConsoleLogStore;
  388. /**
  389. * Get all stores.
  390. */
  391. static getAll(): {
  392. [pluginId: string]: Writable<IVConsoleLogStore>;
  393. };
  394. }
  395. }
  396. declare module "log/log.model" {
  397. import { VConsoleModel } from "lib/model";
  398. /**********************************
  399. * Interfaces
  400. **********************************/
  401. export type IConsoleLogMethod = 'log' | 'info' | 'debug' | 'warn' | 'error';
  402. export interface IVConsoleLogData {
  403. origData: any;
  404. style?: string;
  405. }
  406. export interface IVConsoleLog {
  407. _id: string;
  408. type: IConsoleLogMethod;
  409. cmdType?: 'input' | 'output';
  410. repeated: number;
  411. toggle: Record<string, boolean>;
  412. date: number;
  413. data: IVConsoleLogData[];
  414. groupLevel: number;
  415. groupLabel?: symbol;
  416. groupHeader?: 0 | 1 | 2;
  417. groupCollapsed?: boolean;
  418. }
  419. export type IVConsoleLogListMap = {
  420. [pluginId: string]: IVConsoleLog[];
  421. };
  422. export type IVConsoleLogFilter = {
  423. [pluginId: string]: string;
  424. };
  425. export interface IVConsoleAddLogOptions {
  426. noOrig?: boolean;
  427. cmdType?: 'input' | 'output';
  428. }
  429. /**********************************
  430. * Model
  431. **********************************/
  432. export class VConsoleLogModel extends VConsoleModel {
  433. readonly LOG_METHODS: IConsoleLogMethod[];
  434. ADDED_LOG_PLUGIN_ID: string[];
  435. maxLogNumber: number;
  436. protected logCounter: number;
  437. protected groupLevel: number;
  438. protected groupLabelCollapsedStack: {
  439. label: symbol;
  440. collapsed: boolean;
  441. }[];
  442. protected pluginPattern: RegExp;
  443. protected logQueue: IVConsoleLog[];
  444. protected flushLogScheduled: boolean;
  445. /**
  446. * The original `window.console` methods.
  447. */
  448. origConsole: {
  449. [method: string]: Function;
  450. };
  451. /**
  452. * Bind a Log plugin.
  453. * When binding first plugin, `window.console` will be hooked.
  454. */
  455. bindPlugin(pluginId: string): boolean;
  456. /**
  457. * Unbind a Log plugin.
  458. * When no binded plugin exists, hooked `window.console` will be recovered.
  459. */
  460. unbindPlugin(pluginId: string): boolean;
  461. /**
  462. * Hook `window.console` with vConsole log method.
  463. * Methods will be hooked only once.
  464. */
  465. mockConsole(): void;
  466. protected _mockConsoleLog(): void;
  467. protected _mockConsoleTime(): void;
  468. protected _mockConsoleGroup(): void;
  469. protected _mockConsoleClear(): void;
  470. /**
  471. * Recover `window.console`.
  472. */
  473. unmockConsole(): void;
  474. /**
  475. * Call origin `window.console[method](...args)`
  476. */
  477. callOriginalConsole(method: string, ...args: any[]): void;
  478. /**
  479. * Reset groups by `console.group()`.
  480. */
  481. resetGroup(): void;
  482. /**
  483. * Remove all logs.
  484. */
  485. clearLog(): void;
  486. /**
  487. * Remove a plugin's logs.
  488. */
  489. clearPluginLog(pluginId: string): void;
  490. /**
  491. * Add a vConsole log.
  492. */
  493. addLog(item?: {
  494. type: IConsoleLogMethod;
  495. origData: any[];
  496. isGroupHeader?: 0 | 1 | 2;
  497. isGroupCollapsed?: boolean;
  498. }, opt?: IVConsoleAddLogOptions): void;
  499. /**
  500. * Execute a JS command.
  501. */
  502. evalCommand(cmd: string): void;
  503. protected _signalLog(log: IVConsoleLog): void;
  504. protected _flushLogs(): void;
  505. protected _extractPluginIdByLog(log: IVConsoleLog): string;
  506. protected _isRepeatedLog(logList: IVConsoleLog[], log: IVConsoleLog): boolean;
  507. protected _updateLastLogRepeated(logList: IVConsoleLog[]): IVConsoleLog[];
  508. protected _limitLogListLength(logList: IVConsoleLog[]): IVConsoleLog[];
  509. }
  510. }
  511. declare module "log/log.exporter" {
  512. import { VConsolePluginExporter } from "lib/pluginExporter";
  513. import { VConsoleLogModel } from "log/log.model";
  514. import type { IConsoleLogMethod } from "log/log.model";
  515. export class VConsoleLogExporter extends VConsolePluginExporter {
  516. model: VConsoleLogModel;
  517. log(...args: any[]): void;
  518. info(...args: any[]): void;
  519. debug(...args: any[]): void;
  520. warn(...args: any[]): void;
  521. error(...args: any[]): void;
  522. clear(): void;
  523. protected addLog(method: IConsoleLogMethod, ...args: any[]): void;
  524. }
  525. }
  526. declare module "log/log" {
  527. import { VConsoleSveltePlugin } from "lib/sveltePlugin";
  528. import { VConsoleLogModel } from "log/log.model";
  529. /**
  530. * vConsole Log Plugin (base class).
  531. */
  532. export class VConsoleLogPlugin extends VConsoleSveltePlugin {
  533. model: VConsoleLogModel;
  534. isReady: boolean;
  535. isShow: boolean;
  536. isInBottom: boolean;
  537. constructor(id: string, name: string);
  538. onReady(): void;
  539. onRemove(): void;
  540. onAddTopBar(callback: Function): void;
  541. onAddTool(callback: Function): void;
  542. onUpdateOption(): void;
  543. }
  544. export default VConsoleLogPlugin;
  545. }
  546. declare module "log/default" {
  547. import { VConsoleLogPlugin } from "log/log";
  548. export class VConsoleDefaultPlugin extends VConsoleLogPlugin {
  549. protected onErrorHandler: any;
  550. protected resourceErrorHandler: any;
  551. protected rejectionHandler: any;
  552. onReady(): void;
  553. onRemove(): void;
  554. /**
  555. * Catch window errors.
  556. */
  557. protected bindErrors(): void;
  558. /**
  559. * Not catch window errors.
  560. */
  561. protected unbindErrors(): void;
  562. /**
  563. * Catch `window.onerror`.
  564. */
  565. protected catchWindowOnError(): void;
  566. /**
  567. * Catch resource loading error: image, video, link, script.
  568. */
  569. protected catchResourceError(): void;
  570. /**
  571. * Catch `Promise.reject`.
  572. * @reference https://developer.mozilla.org/en-US/docs/Web/API/Window/unhandledrejection_event
  573. */
  574. private catchUnhandledRejection;
  575. }
  576. export default VConsoleDefaultPlugin;
  577. }
  578. declare module "log/system" {
  579. import { VConsoleLogPlugin } from "log/log";
  580. export class VConsoleSystemPlugin extends VConsoleLogPlugin {
  581. onReady(): void;
  582. printSystemInfo(): void;
  583. }
  584. export default VConsoleSystemPlugin;
  585. }
  586. declare module "network/helper" {
  587. import type { VConsoleNetworkRequestItem } from "network/requestItem";
  588. export type IOnUpdateCallback = (item: VConsoleNetworkRequestItem) => void;
  589. /**
  590. * Generate `getData` by url.
  591. */
  592. export const genGetDataByUrl: (url: string, getData?: {}) => {};
  593. /**
  594. * Generate formatted response data by responseType.
  595. */
  596. export const genResonseByResponseType: (responseType: string, response: any) => string;
  597. /**
  598. * Generate formatted response body by XMLHttpRequestBodyInit.
  599. */
  600. export const genFormattedBody: (body?: BodyInit) => string | {
  601. [key: string]: string;
  602. };
  603. /**
  604. * Get formatted URL object by string.
  605. */
  606. export const getURL: (urlString?: string) => URL;
  607. }
  608. declare module "network/requestItem" {
  609. export type VConsoleRequestMethod = '' | 'GET' | 'POST' | 'PUT' | 'DELETE' | 'HEAD' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH';
  610. export class VConsoleNetworkRequestItem {
  611. id: string;
  612. name?: string;
  613. method: VConsoleRequestMethod;
  614. url: string;
  615. status: number | string;
  616. statusText?: string;
  617. cancelState?: 0 | 1 | 2 | 3;
  618. readyState?: XMLHttpRequest['readyState'];
  619. header: {
  620. [key: string]: string;
  621. };
  622. responseType: XMLHttpRequest['responseType'];
  623. requestType: 'xhr' | 'fetch' | 'ping' | 'custom';
  624. requestHeader: HeadersInit;
  625. response: any;
  626. responseSize: number;
  627. responseSizeText: string;
  628. startTime: number;
  629. startTimeText: string;
  630. endTime: number;
  631. costTime?: number;
  632. getData: {
  633. [key: string]: string;
  634. };
  635. postData: {
  636. [key: string]: string;
  637. } | string;
  638. actived: boolean;
  639. noVConsole?: boolean;
  640. constructor();
  641. }
  642. export class VConsoleNetworkRequestItemProxy extends VConsoleNetworkRequestItem {
  643. static Handler: {
  644. get(item: VConsoleNetworkRequestItemProxy, prop: string): any;
  645. set(item: VConsoleNetworkRequestItemProxy, prop: string, value: any): boolean;
  646. };
  647. protected _response?: any;
  648. constructor(item: VConsoleNetworkRequestItem);
  649. }
  650. }
  651. declare module "network/xhr.proxy" {
  652. import { VConsoleNetworkRequestItem } from "network/requestItem";
  653. import type { IOnUpdateCallback } from "network/helper";
  654. export class XHRProxyHandler<T extends XMLHttpRequest> implements ProxyHandler<T> {
  655. XMLReq: XMLHttpRequest;
  656. item: VConsoleNetworkRequestItem;
  657. protected onUpdateCallback: IOnUpdateCallback;
  658. constructor(XMLReq: XMLHttpRequest, onUpdateCallback: IOnUpdateCallback);
  659. get(target: T, key: string): any;
  660. set(target: T, key: string, value: any): boolean;
  661. onReadyStateChange(): void;
  662. onAbort(): void;
  663. onTimeout(): void;
  664. protected triggerUpdate(): void;
  665. protected getOpen(target: T): (...args: any[]) => any;
  666. protected getSend(target: T): (...args: any[]) => any;
  667. protected getSetRequestHeader(target: T): (...args: any[]) => any;
  668. protected setOnReadyStateChange(target: T, key: string, value: any): boolean;
  669. protected setOnAbort(target: T, key: string, value: any): boolean;
  670. protected setOnTimeout(target: T, key: string, value: any): boolean;
  671. /**
  672. * Update item's properties according to readyState.
  673. */
  674. protected updateItemByReadyState(): void;
  675. }
  676. export class XHRProxy {
  677. static origXMLHttpRequest: {
  678. new (): XMLHttpRequest;
  679. prototype: XMLHttpRequest;
  680. readonly DONE: number;
  681. readonly HEADERS_RECEIVED: number;
  682. readonly LOADING: number;
  683. readonly OPENED: number;
  684. readonly UNSENT: number;
  685. };
  686. static create(onUpdateCallback: IOnUpdateCallback): {
  687. new (): XMLHttpRequest;
  688. prototype: XMLHttpRequest;
  689. readonly DONE: number;
  690. readonly HEADERS_RECEIVED: number;
  691. readonly LOADING: number;
  692. readonly OPENED: number;
  693. readonly UNSENT: number;
  694. };
  695. }
  696. }
  697. declare module "network/fetch.proxy" {
  698. import { VConsoleNetworkRequestItem } from "network/requestItem";
  699. import type { IOnUpdateCallback } from "network/helper";
  700. export class ResponseProxyHandler<T extends Response> implements ProxyHandler<T> {
  701. resp: Response;
  702. item: VConsoleNetworkRequestItem;
  703. protected onUpdateCallback: IOnUpdateCallback;
  704. constructor(resp: T, item: VConsoleNetworkRequestItem, onUpdateCallback: IOnUpdateCallback);
  705. set(target: T, key: string, value: any): boolean;
  706. get(target: T, key: string): any;
  707. protected mockReader(): void;
  708. }
  709. export class FetchProxyHandler<T extends typeof fetch> implements ProxyHandler<T> {
  710. protected onUpdateCallback: IOnUpdateCallback;
  711. constructor(onUpdateCallback: IOnUpdateCallback);
  712. apply(target: T, thisArg: typeof window, argsList: any): Promise<Response>;
  713. protected beforeFetch(item: VConsoleNetworkRequestItem, input: RequestInfo, init?: RequestInit): void;
  714. protected afterFetch(item: any): (resp: Response) => Response;
  715. protected handleResponseBody(resp: Response, item: VConsoleNetworkRequestItem): Promise<ArrayBuffer> | Promise<string>;
  716. }
  717. export class FetchProxy {
  718. static origFetch: typeof fetch;
  719. static create(onUpdateCallback: IOnUpdateCallback): typeof fetch;
  720. }
  721. }
  722. declare module "network/beacon.proxy" {
  723. import type { IOnUpdateCallback } from "network/helper";
  724. export class BeaconProxyHandler<T extends typeof navigator.sendBeacon> implements ProxyHandler<T> {
  725. protected onUpdateCallback: IOnUpdateCallback;
  726. constructor(onUpdateCallback: IOnUpdateCallback);
  727. apply(target: T, thisArg: T, argsList: any[]): any;
  728. }
  729. export class BeaconProxy {
  730. static origSendBeacon: (url: string | URL, data?: BodyInit) => boolean;
  731. static create(onUpdateCallback: IOnUpdateCallback): any;
  732. }
  733. }
  734. declare module "network/network.model" {
  735. import { VConsoleModel } from "lib/model";
  736. import { VConsoleNetworkRequestItem } from "network/requestItem";
  737. /**
  738. * Network Store
  739. */
  740. export const requestList: import("vendor/svelte/store").Writable<{
  741. [id: string]: VConsoleNetworkRequestItem;
  742. }>;
  743. /**
  744. * Network Model
  745. */
  746. export class VConsoleNetworkModel extends VConsoleModel {
  747. maxNetworkNumber: number;
  748. ignoreUrlRegExp: RegExp;
  749. protected itemCounter: number;
  750. constructor();
  751. unMock(): void;
  752. clearLog(): void;
  753. /**
  754. * Add or update a request item by request ID.
  755. */
  756. updateRequest(id: string, data: VConsoleNetworkRequestItem): void;
  757. /**
  758. * mock XMLHttpRequest
  759. * @private
  760. */
  761. private mockXHR;
  762. /**
  763. * mock fetch request
  764. * @private
  765. */
  766. private mockFetch;
  767. /**
  768. * mock navigator.sendBeacon
  769. * @private
  770. */
  771. private mockSendBeacon;
  772. protected limitListLength(): void;
  773. }
  774. export default VConsoleNetworkModel;
  775. }
  776. declare module "network/network.exporter" {
  777. import { VConsolePluginExporter } from "lib/pluginExporter";
  778. import { VConsoleNetworkModel } from "network/network.model";
  779. import { VConsoleNetworkRequestItem, VConsoleNetworkRequestItemProxy } from "network/requestItem";
  780. export class VConsoleNetworkExporter extends VConsolePluginExporter {
  781. model: VConsoleNetworkModel;
  782. add(item: VConsoleNetworkRequestItem): VConsoleNetworkRequestItemProxy;
  783. update(id: string, item: VConsoleNetworkRequestItem): void;
  784. clear(): void;
  785. }
  786. }
  787. declare module "network/network" {
  788. import { VConsoleSveltePlugin } from "lib/sveltePlugin";
  789. import { VConsoleNetworkModel } from "network/network.model";
  790. import { VConsoleNetworkExporter } from "network/network.exporter";
  791. export class VConsoleNetworkPlugin extends VConsoleSveltePlugin {
  792. model: VConsoleNetworkModel;
  793. exporter: VConsoleNetworkExporter;
  794. constructor(id: string, name: string, renderProps?: {});
  795. onReady(): void;
  796. onAddTool(callback: any): void;
  797. onRemove(): void;
  798. onUpdateOption(): void;
  799. }
  800. }
  801. declare module "element/element.model" {
  802. export interface IVConsoleNode {
  803. nodeType: typeof Node.prototype.nodeType;
  804. nodeName: typeof Node.prototype.nodeName;
  805. textContent: typeof Node.prototype.textContent;
  806. id: typeof Element.prototype.id;
  807. className: typeof Element.prototype.className;
  808. attributes: {
  809. [name: string]: string;
  810. }[];
  811. childNodes: IVConsoleNode[];
  812. _isExpand?: boolean;
  813. _isActived?: boolean;
  814. _isSingleLine?: boolean;
  815. _isNullEndTag?: boolean;
  816. }
  817. /**
  818. * Element Store
  819. */
  820. export const rootNode: import("vendor/svelte/store").Writable<IVConsoleNode>;
  821. export const activedNode: import("vendor/svelte/store").Writable<IVConsoleNode>;
  822. }
  823. declare module "element/element" {
  824. import MutationObserver from "vendor/mutation-observer";
  825. import { VConsoleSveltePlugin } from "lib/sveltePlugin";
  826. import type { IVConsoleNode } from "element/element.model";
  827. /**
  828. * vConsole Element Panel
  829. */
  830. export class VConsoleElementPlugin extends VConsoleSveltePlugin {
  831. protected isInited: boolean;
  832. protected observer: MutationObserver;
  833. protected nodeMap: WeakMap<Node, IVConsoleNode>;
  834. constructor(id: string, name: string, renderProps?: {});
  835. onShow(): void;
  836. onRemove(): void;
  837. onAddTool(callback: any): void;
  838. protected _init(): void;
  839. protected _handleMutation(mutation: MutationRecord): void;
  840. protected _onChildRemove(mutation: MutationRecord): void;
  841. protected _onChildAdd(mutation: MutationRecord): void;
  842. protected _onAttributesChange(mutation: MutationRecord): void;
  843. protected _onCharacterDataChange(mutation: MutationRecord): void;
  844. /**
  845. * Generate an VNode for rendering views. VNode will be updated if existing.
  846. * VNode will be stored in a WeakMap.
  847. */
  848. protected _generateVNode(elem: Node): IVConsoleNode;
  849. protected _updateVNodeAttributes(elem: Node): void;
  850. /**
  851. * Expand the actived node.
  852. * If the node is collapsed, expand it.
  853. * If the node is expanded, expand it's child nodes.
  854. */
  855. protected _expandActivedNode(): void;
  856. /**
  857. * Collapse the actived node.
  858. * If the node is expanded, and has expanded child nodes, collapse it's child nodes.
  859. * If the node is expanded, and has no expanded child node, collapse it self.
  860. * If the node is collapsed, do nothing.
  861. */
  862. protected _collapseActivedNode(): void;
  863. protected _isIgnoredNode(elem: Node): boolean;
  864. protected _isInVConsole(elem: Element): boolean;
  865. protected _refreshStore(): void;
  866. }
  867. }
  868. declare module "storage/storage.cookie" {
  869. import type { IStorage } from "storage/storage.model";
  870. export interface CookieOptions {
  871. path?: string | null;
  872. domain?: string | null;
  873. expires?: Date | null;
  874. secure?: boolean;
  875. sameSite?: 'Strict' | 'Lax' | 'None';
  876. }
  877. export class CookieStorage implements IStorage {
  878. get length(): number;
  879. /**
  880. * Returns sorted keys.
  881. */
  882. get keys(): string[];
  883. key(index: number): string;
  884. setItem(key: string, data: string, cookieOptions?: CookieOptions): void;
  885. getItem(key: string): string;
  886. removeItem(key: string, cookieOptions?: CookieOptions): void;
  887. clear(): void;
  888. }
  889. }
  890. declare module "storage/storage.wx" {
  891. import type { IStorage } from "storage/storage.model";
  892. export class WxStorage implements IStorage {
  893. keys: string[];
  894. currentSize: number;
  895. limitSize: number;
  896. get length(): number;
  897. key(index: number): string;
  898. /**
  899. * Prepare for async data.
  900. */
  901. prepare(): Promise<boolean>;
  902. getItem(key: string): Promise<string>;
  903. setItem(key: string, data: any): Promise<void>;
  904. removeItem(key: string): Promise<void>;
  905. clear(): Promise<void>;
  906. }
  907. }
  908. declare module "storage/storage.model" {
  909. import type { VConsoleAvailableStorage } from "core/options.interface";
  910. import { VConsoleModel } from "lib/model";
  911. export interface IStorage {
  912. length: number;
  913. key: (index: number) => string | null;
  914. getItem: (key: string) => string | null | Promise<string | null>;
  915. setItem: (key: string, data: any) => void | Promise<void>;
  916. removeItem: (key: string) => void | Promise<void>;
  917. clear: () => void | Promise<void>;
  918. prepare?: () => Promise<boolean>;
  919. }
  920. /**
  921. * Storage Store
  922. */
  923. export const storageStore: {
  924. updateTime: import("vendor/svelte/store").Writable<number>;
  925. activedName: import("vendor/svelte/store").Writable<VConsoleAvailableStorage>;
  926. defaultStorages: import("vendor/svelte/store").Writable<VConsoleAvailableStorage[]>;
  927. };
  928. export class VConsoleStorageModel extends VConsoleModel {
  929. protected storage: Map<VConsoleAvailableStorage, IStorage>;
  930. constructor();
  931. get activedStorage(): IStorage;
  932. getItem(key: string): Promise<string>;
  933. setItem(key: string, data: any): Promise<void>;
  934. removeItem(key: string): Promise<void>;
  935. clear(): Promise<void>;
  936. refresh(): void;
  937. /**
  938. * Get key-value data.
  939. */
  940. getEntries(): Promise<[string, string][]>;
  941. updateEnabledStorages(): void;
  942. protected promisify<T extends string | void>(ret: T | Promise<T>): T | Promise<T>;
  943. protected deleteStorage(key: VConsoleAvailableStorage): void;
  944. }
  945. }
  946. declare module "storage/storage" {
  947. import { VConsoleSveltePlugin } from "lib/sveltePlugin";
  948. import { VConsoleStorageModel } from "storage/storage.model";
  949. export class VConsoleStoragePlugin extends VConsoleSveltePlugin {
  950. protected model: VConsoleStorageModel;
  951. protected onAddTopBarCallback: Function;
  952. constructor(id: string, name: string, renderProps?: {});
  953. onReady(): void;
  954. onShow(): void;
  955. onAddTopBar(callback: Function): void;
  956. onAddTool(callback: Function): void;
  957. onUpdateOption(): void;
  958. protected updateTopBar(): void;
  959. }
  960. }
  961. declare module "core/core" {
  962. /**
  963. * vConsole core class
  964. */
  965. import type { SvelteComponent } from "vendor/svelte";
  966. import type { VConsoleOptions } from "core/options.interface";
  967. import { VConsolePlugin } from "lib/plugin";
  968. import { VConsoleLogPlugin } from "log/log";
  969. import { VConsoleDefaultPlugin } from "log/default";
  970. import { VConsoleSystemPlugin } from "log/system";
  971. import { VConsoleNetworkPlugin } from "network/network";
  972. import { VConsoleElementPlugin } from "element/element";
  973. import { VConsoleStoragePlugin } from "storage/storage";
  974. import { VConsoleLogExporter } from "log/log.exporter";
  975. import { VConsoleNetworkExporter } from "network/network.exporter";
  976. export class VConsole {
  977. version: string;
  978. isInited: boolean;
  979. option: VConsoleOptions;
  980. protected compInstance: SvelteComponent;
  981. protected pluginList: {
  982. [id: string]: VConsolePlugin;
  983. };
  984. log: VConsoleLogExporter;
  985. system: VConsoleLogExporter;
  986. network: VConsoleNetworkExporter;
  987. static VConsolePlugin: typeof VConsolePlugin;
  988. static VConsoleLogPlugin: typeof VConsoleLogPlugin;
  989. static VConsoleDefaultPlugin: typeof VConsoleDefaultPlugin;
  990. static VConsoleSystemPlugin: typeof VConsoleSystemPlugin;
  991. static VConsoleNetworkPlugin: typeof VConsoleNetworkPlugin;
  992. static VConsoleElementPlugin: typeof VConsoleElementPlugin;
  993. static VConsoleStoragePlugin: typeof VConsoleStoragePlugin;
  994. constructor(opt?: VConsoleOptions);
  995. /**
  996. * Get singleton instance.
  997. **/
  998. static get instance(): VConsole | undefined;
  999. /**
  1000. * Set singleton instance.
  1001. **/
  1002. static set instance(value: VConsole | undefined);
  1003. /**
  1004. * Add built-in plugins.
  1005. */
  1006. private _addBuiltInPlugins;
  1007. /**
  1008. * Init svelte component.
  1009. */
  1010. private _initComponent;
  1011. private _updateComponentByOptions;
  1012. /**
  1013. * Update the position of Switch button.
  1014. */
  1015. setSwitchPosition(x: number, y: number): void;
  1016. /**
  1017. * Auto run after initialization.
  1018. * @private
  1019. */
  1020. private _autoRun;
  1021. private _showFirstPluginWhenEmpty;
  1022. /**
  1023. * Trigger a `vConsole.option` event.
  1024. */
  1025. triggerEvent(eventName: string, param?: any): void;
  1026. /**
  1027. * Init a plugin.
  1028. */
  1029. private _initPlugin;
  1030. /**
  1031. * Trigger an event for each plugin.
  1032. */
  1033. private _triggerPluginsEvent;
  1034. /**
  1035. * Trigger an event by plugin's id.
  1036. * @private
  1037. */
  1038. private _triggerPluginEvent;
  1039. /**
  1040. * Sorting plugin list by option `pluginOrder`.
  1041. * Plugin not listed in `pluginOrder` will be put last.
  1042. */
  1043. private _reorderPluginList;
  1044. /**
  1045. * Add a new plugin.
  1046. */
  1047. addPlugin(plugin: VConsolePlugin): boolean;
  1048. /**
  1049. * Remove a plugin.
  1050. */
  1051. removePlugin(pluginID: string): boolean;
  1052. /**
  1053. * Show console panel.
  1054. */
  1055. show(): void;
  1056. /**
  1057. * Hide console panel.
  1058. */
  1059. hide(): void;
  1060. /**
  1061. * Show switch button
  1062. */
  1063. showSwitch(): void;
  1064. /**
  1065. * Hide switch button.
  1066. */
  1067. hideSwitch(): void;
  1068. /**
  1069. * Show a plugin panel.
  1070. */
  1071. showPlugin(pluginId: string): void;
  1072. /**
  1073. * Update option(s).
  1074. * @example `setOption('log.maxLogNumber', 20)`: set 'maxLogNumber' field only.
  1075. * @example `setOption({ log: { maxLogNumber: 20 }})`: overwrite 'log' object.
  1076. */
  1077. setOption(keyOrObj: any, value?: any): void;
  1078. /**
  1079. * Remove vConsole.
  1080. */
  1081. destroy(): void;
  1082. }
  1083. }
  1084. declare module "vconsole" {
  1085. /**
  1086. * A Front-End Console Panel for Mobile Webpage
  1087. */
  1088. import "vendor/core-js/stable/symbol";
  1089. import 'core-js/stable/promise';
  1090. import { VConsole } from "core/core";
  1091. export default VConsole;
  1092. }
  1093. declare module "component/recycleScroller/recycleManager" {
  1094. const createRecycleManager: () => (itemCount: number, start: number, end: number) => {
  1095. key: number;
  1096. index: number;
  1097. show: boolean;
  1098. }[];
  1099. export default createRecycleManager;
  1100. }
  1101. declare module "component/recycleScroller/resizeObserver" {
  1102. /**
  1103. * A ResizeObserver polyfill.
  1104. * ResizeObserver is not support in iOS 13.3
  1105. */
  1106. class EmptyResizeObserver {
  1107. constructor(callback: (entries: any[], observer?: EmptyResizeObserver) => void);
  1108. disconnect(): void;
  1109. observe(target: Element | SVGElement, options?: any): void;
  1110. unobserve(target: Element | SVGElement): void;
  1111. }
  1112. export const hasResizeObserver: () => boolean;
  1113. export const useResizeObserver: () => {
  1114. new (callback: ResizeObserverCallback): ResizeObserver;
  1115. prototype: ResizeObserver;
  1116. } | typeof EmptyResizeObserver;
  1117. }
  1118. declare module "component/recycleScroller/scroll/friction" {
  1119. /** *
  1120. * Friction physics simulation. Friction is actually just a simple
  1121. * power curve; the only trick is taking the natural log of the
  1122. * initial drag so that we can express the answer in terms of time.
  1123. */
  1124. class Friction {
  1125. private _drag;
  1126. private _dragLog;
  1127. private _x;
  1128. private _v;
  1129. private _startTime;
  1130. constructor(drag: number);
  1131. set(x: number, v: number, t?: number): void;
  1132. x(t: number): number;
  1133. dx(t: number): number;
  1134. done(t: number): boolean;
  1135. }
  1136. export default Friction;
  1137. }
  1138. declare module "component/recycleScroller/scroll/linear" {
  1139. class Linear {
  1140. private _x;
  1141. private _endX;
  1142. private _v;
  1143. private _startTime;
  1144. private _endTime;
  1145. set(x: number, endX: number, dt: number, t?: number): void;
  1146. x(t: number): number;
  1147. dx(t: number): number;
  1148. done(t: number): boolean;
  1149. }
  1150. export default Linear;
  1151. }
  1152. declare module "component/recycleScroller/scroll/spring" {
  1153. class Spring {
  1154. private _solver;
  1155. private _solution;
  1156. private _endPosition;
  1157. private _startTime;
  1158. constructor(mass: number, springConstant: number, damping: number);
  1159. x(t: number): number;
  1160. dx(t: number): number;
  1161. set(endPosition: number, x: number, velocity: number, t?: number): void;
  1162. done(t: number): boolean;
  1163. }
  1164. export default Spring;
  1165. }
  1166. declare module "component/recycleScroller/scroll/scroll" {
  1167. /** *
  1168. * Scroll combines Friction and Spring to provide the
  1169. * classic "flick-with-bounce" behavior.
  1170. */
  1171. class Scroll {
  1172. private _enableSpring;
  1173. private _getExtend;
  1174. private _friction;
  1175. private _spring;
  1176. private _toEdge;
  1177. constructor(getExtend: () => number, _enableSpring: boolean);
  1178. set(x: number, v: number, t?: number): void;
  1179. x(t: number): number;
  1180. dx(t: number): number;
  1181. done(t: number): boolean;
  1182. }
  1183. export default Scroll;
  1184. }
  1185. declare module "component/recycleScroller/scroll/touchTracker" {
  1186. export interface TrackerHandler {
  1187. onTouchStart(): void;
  1188. onTouchMove(x: number, y: number): void;
  1189. onTouchEnd(x: number, y: number, velocityX: number, velocityY: number): void;
  1190. onTouchCancel(): void;
  1191. onWheel(x: number, y: number): void;
  1192. }
  1193. class TouchTracker {
  1194. private _handler;
  1195. private _touchId;
  1196. private _startX;
  1197. private _startY;
  1198. private _historyX;
  1199. private _historyY;
  1200. private _historyTime;
  1201. private _wheelDeltaX;
  1202. private _wheelDeltaY;
  1203. constructor(_handler: TrackerHandler);
  1204. private _getTouchDelta;
  1205. private _onTouchMove;
  1206. private _onWheel;
  1207. handleTouchStart: (e: TouchEvent) => void;
  1208. handleTouchMove: (e: TouchEvent) => void;
  1209. handleTouchEnd: (e: TouchEvent) => void;
  1210. handleTouchCancel: (e: TouchEvent) => void;
  1211. handleWheel: (e: WheelEvent) => void;
  1212. }
  1213. export default TouchTracker;
  1214. }
  1215. declare module "component/recycleScroller/scroll/scrollHandler" {
  1216. import { TrackerHandler } from "component/recycleScroller/scroll/touchTracker";
  1217. class ScrollHandler implements TrackerHandler {
  1218. private _updatePosition;
  1219. private _scrollModel;
  1220. private _linearModel;
  1221. private _startPosition;
  1222. private _position;
  1223. private _animate;
  1224. private _getExtent;
  1225. constructor(getExtent: () => number, _updatePosition: (pos: number) => void);
  1226. onTouchStart(): void;
  1227. onTouchMove(dx: number, dy: number): void;
  1228. onTouchEnd(dx: number, dy: number, velocityX: number, velocityY: number): void;
  1229. onTouchCancel(): void;
  1230. onWheel(x: number, y: number): void;
  1231. getPosition(): number;
  1232. updatePosition(position: number): void;
  1233. scrollTo(position: number, duration?: number): void;
  1234. }
  1235. export default ScrollHandler;
  1236. }