clientnode 3.0.977 → 3.0.980

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +0 -119
  2. package/package.json +1 -1
  3. package/readme.md +2 -7
package/index.d.ts CHANGED
@@ -179,7 +179,6 @@ export declare class Tools<TElement = HTMLElement> {
179
179
  initialize<R = this>(options?: RecursivePartial<Options>): R;
180
180
  /**
181
181
  * Defines a generic controller for dom node aware plugins.
182
- * @param this - Indicates an unbound method.
183
182
  * @param object - The object or class to control. If "object" is a class
184
183
  * an instance will be generated.
185
184
  * @param parameters - The initially given arguments object.
@@ -190,7 +189,6 @@ export declare class Tools<TElement = HTMLElement> {
190
189
  static controller<TElement = HTMLElement>(this: void, object: unknown, parameters: unknown, $domNode?: null | $T<TElement>): unknown;
191
190
  /**
192
191
  * Formats given date or current via given format specification.
193
- * @param this - Indicates an unbound method.
194
192
  * @param format - Format specification.
195
193
  * @param dateTime - Date time to format.
196
194
  * @param options - Additional configuration options for
@@ -203,7 +201,6 @@ export declare class Tools<TElement = HTMLElement> {
203
201
  static dateTimeFormat(this: void, format?: string, dateTime?: Date | number | string, options?: SecondParameter<typeof Intl.DateTimeFormat>, locales?: Array<string> | string): string;
204
202
  /**
205
203
  * Determines whether its argument represents a JavaScript number.
206
- * @param this - Indicates an unbound method.
207
204
  * @param value - Value to analyze.
208
205
  *
209
206
  * @returns A boolean value indicating whether given object is numeric
@@ -212,7 +209,6 @@ export declare class Tools<TElement = HTMLElement> {
212
209
  static isNumeric(this: void, value: unknown): value is number;
213
210
  /**
214
211
  * Determine whether the argument is a window.
215
- * @param this - Indicates an unbound method.
216
212
  * @param value - Value to check for.
217
213
  *
218
214
  * @returns Boolean value indicating the result.
@@ -221,7 +217,6 @@ export declare class Tools<TElement = HTMLElement> {
221
217
  /**
222
218
  * Checks if given object is similar to an array and can be handled like an
223
219
  * array.
224
- * @param this - Indicates an unbound method.
225
220
  * @param object - Object to check behavior for.
226
221
  *
227
222
  * @returns A boolean value indicating whether given object is array like.
@@ -229,7 +224,6 @@ export declare class Tools<TElement = HTMLElement> {
229
224
  static isArrayLike(this: void, object: unknown): boolean;
230
225
  /**
231
226
  * Checks whether one of the given pattern matches given string.
232
- * @param this - Indicates an unbound method.
233
227
  * @param target - Target to check in pattern for.
234
228
  * @param pattern - List of pattern to check for.
235
229
  *
@@ -239,7 +233,6 @@ export declare class Tools<TElement = HTMLElement> {
239
233
  static isAnyMatching(this: void, target: string, pattern: Array<string | RegExp>): boolean;
240
234
  /**
241
235
  * Checks whether given object is a native object but not null.
242
- * @param this - Indicates an unbound method.
243
236
  * @param value - Value to check.
244
237
  *
245
238
  * @returns Value "true" if given object is a plain javaScript object and
@@ -248,7 +241,6 @@ export declare class Tools<TElement = HTMLElement> {
248
241
  static isObject(this: void, value: unknown): value is Mapping<unknown>;
249
242
  /**
250
243
  * Checks whether given object is a plain native object.
251
- * @param this - Indicates an unbound method.
252
244
  * @param value - Value to check.
253
245
  *
254
246
  * @returns Value "true" if given object is a plain javaScript object and
@@ -257,7 +249,6 @@ export declare class Tools<TElement = HTMLElement> {
257
249
  static isPlainObject(this: void, value: unknown): value is PlainObject;
258
250
  /**
259
251
  * Checks whether given object is a set.
260
- * @param this - Indicates an unbound method.
261
252
  * @param value - Value to check.
262
253
  *
263
254
  * @returns Value "true" if given object is a set and "false" otherwise.
@@ -265,7 +256,6 @@ export declare class Tools<TElement = HTMLElement> {
265
256
  static isSet(this: void, value: unknown): value is Set<unknown>;
266
257
  /**
267
258
  * Checks whether given object is a map.
268
- * @param this - Indicates an unbound method.
269
259
  * @param value - Value to check.
270
260
  *
271
261
  * @returns Value "true" if given object is a map and "false" otherwise.
@@ -273,7 +263,6 @@ export declare class Tools<TElement = HTMLElement> {
273
263
  static isMap(this: void, value: unknown): value is Map<unknown, unknown>;
274
264
  /**
275
265
  * Checks whether given object is a proxy.
276
- * @param this - Indicates an unbound method.
277
266
  * @param value - Value to check.
278
267
  *
279
268
  * @returns Value "true" if given object is a proxy and "false" otherwise.
@@ -281,7 +270,6 @@ export declare class Tools<TElement = HTMLElement> {
281
270
  static isProxy(this: void, value: unknown): value is ProxyType;
282
271
  /**
283
272
  * Checks whether given object is a function.
284
- * @param this - Indicates an unbound method.
285
273
  * @param value - Value to check.
286
274
  *
287
275
  * @returns Value "true" if given object is a function and "false"
@@ -356,7 +344,6 @@ export declare class Tools<TElement = HTMLElement> {
356
344
  warn(object: unknown, ...additionalArguments: Array<unknown>): void;
357
345
  /**
358
346
  * Dumps a given object in a human readable format.
359
- * @param this - Indicates an unbound method.
360
347
  * @param object - Any object to show.
361
348
  * @param level - Number of levels to dig into given object recursively.
362
349
  * @param currentLevel - Maximal number of recursive function calls to
@@ -367,7 +354,6 @@ export declare class Tools<TElement = HTMLElement> {
367
354
  static show(this: void, object: unknown, level?: number, currentLevel?: number): string;
368
355
  /**
369
356
  * Deletes a cookie value by given name.
370
- * @param this - Indicates an unbound method.
371
357
  * @param name - Name to identify requested value.
372
358
  *
373
359
  * @returns Nothing.
@@ -375,7 +361,6 @@ export declare class Tools<TElement = HTMLElement> {
375
361
  static deleteCookie(this: void, name: string): void;
376
362
  /**
377
363
  * Gets a cookie value by given name.
378
- * @param this - Indicates an unbound method.
379
364
  * @param name - Name to identify requested value.
380
365
  *
381
366
  * @returns Requested value.
@@ -383,7 +368,6 @@ export declare class Tools<TElement = HTMLElement> {
383
368
  static getCookie(this: void, name: string): string | null;
384
369
  /**
385
370
  * Sets a cookie key-value-pair.
386
- * @param this - Indicates an unbound method.
387
371
  * @param name - Name to identify given value.
388
372
  * @param value - Value to set.
389
373
  * @param givenOptions - Cookie set options.
@@ -427,7 +411,6 @@ export declare class Tools<TElement = HTMLElement> {
427
411
  get text(): string;
428
412
  /**
429
413
  * Checks whether given html or text strings are equal.
430
- * @param this - Indicates an unbound method.
431
414
  * @param first - First html, selector to dom node or text to compare.
432
415
  * @param second - Second html, selector to dom node or text to compare.
433
416
  * @param forceHTMLString - Indicates whether given contents are
@@ -457,7 +440,6 @@ export declare class Tools<TElement = HTMLElement> {
457
440
  }): RelativePosition;
458
441
  /**
459
442
  * Generates a directive name corresponding selector string.
460
- * @param this - Indicates an unbound method.
461
443
  * @param directiveName - The directive name.
462
444
  *
463
445
  * @returns Returns generated selector.
@@ -478,7 +460,6 @@ export declare class Tools<TElement = HTMLElement> {
478
460
  renderJavaScriptDependentVisibility(): void;
479
461
  /**
480
462
  * Determines a normalized camel case directive name representation.
481
- * @param this - Indicates an unbound method.
482
463
  * @param directiveName - The directive name.
483
464
  *
484
465
  * @returns Returns the corresponding name.
@@ -501,7 +482,6 @@ export declare class Tools<TElement = HTMLElement> {
501
482
  sliceDomNodeSelectorPrefix(domNodeSelector: string): string;
502
483
  /**
503
484
  * Determines the dom node name of a given dom node string.
504
- * @param this - Indicates an unbound method.
505
485
  * @param domNodeSelector - A given to dom node selector to determine its
506
486
  * name.
507
487
  *
@@ -531,7 +511,6 @@ export declare class Tools<TElement = HTMLElement> {
531
511
  grabDomNodes(domNodeSelectors: Mapping, wrapperDomNode?: Node | null | string | $T<Node>): $DomNodes;
532
512
  /**
533
513
  * Overwrites all inherited variables from parent scope with "undefined".
534
- * @param this - Indicates an unbound method.
535
514
  * @param scope - A scope where inherited names will be removed.
536
515
  * @param prefixesToIgnore - Name prefixes to ignore during deleting names
537
516
  * in given scope.
@@ -541,7 +520,6 @@ export declare class Tools<TElement = HTMLElement> {
541
520
  static isolateScope<T extends Mapping<unknown>>(this: void, scope: T, prefixesToIgnore?: Array<string>): T;
542
521
  /**
543
522
  * Generates a unique name in given scope (useful for jsonp requests).
544
- * @param this - Indicates an unbound method.
545
523
  * @param prefix - A prefix which will be prepended to unique name.
546
524
  * @param suffix - A suffix which will be prepended to unique name.
547
525
  * @param scope - A scope where the name should be unique.
@@ -553,7 +531,6 @@ export declare class Tools<TElement = HTMLElement> {
553
531
  /**
554
532
  * Determines all parameter names from given callable (function or class,
555
533
  * ...).
556
- * @param this - Indicates an unbound method.
557
534
  * @param callable - Function or function code to inspect.
558
535
  *
559
536
  * @returns List of parameter names.
@@ -561,7 +538,6 @@ export declare class Tools<TElement = HTMLElement> {
561
538
  static getParameterNames(this: void, callable: AnyFunction | string): Array<string>;
562
539
  /**
563
540
  * Implements the identity function.
564
- * @param this - Indicates an unbound method.
565
541
  * @param value - A value to return.
566
542
  *
567
543
  * @returns Returns the given value.
@@ -569,7 +545,6 @@ export declare class Tools<TElement = HTMLElement> {
569
545
  static identity<T>(this: void, value: T): T;
570
546
  /**
571
547
  * Inverted filter helper to inverse each given filter.
572
- * @param this - Indicates an unbound method.
573
548
  * @param filter - A function that filters an array.
574
549
  *
575
550
  * @returns The inverted filter.
@@ -579,7 +554,6 @@ export declare class Tools<TElement = HTMLElement> {
579
554
  * Triggers given callback after given duration. Supports unlimited
580
555
  * duration length and returns a promise which will be resolved after given
581
556
  * duration has been passed.
582
- * @param this - Indicates an unbound method.
583
557
  * @param parameters - Observes the first three existing parameters. If one
584
558
  * is a number it will be interpret as delay in milliseconds until given
585
559
  * callback will be triggered. If one is of type function it will be used
@@ -598,7 +572,6 @@ export declare class Tools<TElement = HTMLElement> {
598
572
  * Prevents event functions from triggering to often by defining a minimal
599
573
  * span between each function call. Additional arguments given to this
600
574
  * function will be forwarded to given event function call.
601
- * @param this - Indicates an unbound method.
602
575
  * @param callback - The function to call debounced.
603
576
  * @param thresholdInMilliseconds - The minimum time span between each
604
577
  * function call.
@@ -645,7 +618,6 @@ export declare class Tools<TElement = HTMLElement> {
645
618
  off<TElement = HTMLElement>(...parameters: Array<unknown>): $T<TElement>;
646
619
  /**
647
620
  * Adds dynamic getter and setter to any given data structure such as maps.
648
- * @param this - Indicates an unbound method.
649
621
  * @param object - Object to proxy.
650
622
  * @param getterWrapper - Function to wrap each property get.
651
623
  * @param setterWrapper - Function to wrap each property set.
@@ -665,7 +637,6 @@ export declare class Tools<TElement = HTMLElement> {
665
637
  * This method traverses given object recursively and tracks of seen and
666
638
  * already serialized structures to reuse generated strings or mark a
667
639
  * circular reference.
668
- * @param this - Indicates an unbound method.
669
640
  * @param object - Object to serialize.
670
641
  * @param determineCircularReferenceValue - Callback to create a fallback
671
642
  * value depending on given redundant value.
@@ -677,7 +648,6 @@ export declare class Tools<TElement = HTMLElement> {
677
648
  /**
678
649
  * Converts given map and all nested found maps objects to corresponding
679
650
  * object.
680
- * @param this - Indicates an unbound method.
681
651
  * @param object - Map to convert to.
682
652
  * @param deep - Indicates whether to perform a recursive conversion.
683
653
  *
@@ -687,7 +657,6 @@ export declare class Tools<TElement = HTMLElement> {
687
657
  /**
688
658
  * Converts given plain object and all nested found objects to
689
659
  * corresponding map.
690
- * @param this - Indicates an unbound method.
691
660
  * @param object - Object to convert to.
692
661
  * @param deep - Indicates whether to perform a recursive conversion.
693
662
  *
@@ -697,7 +666,6 @@ export declare class Tools<TElement = HTMLElement> {
697
666
  /**
698
667
  * Replaces given pattern in each value in given object recursively with
699
668
  * given string replacement.
700
- * @param this - Indicates an unbound method.
701
669
  * @param object - Object to convert substrings in.
702
670
  * @param pattern - Regular expression to replace.
703
671
  * @param replacement - String to use as replacement for found patterns.
@@ -707,7 +675,6 @@ export declare class Tools<TElement = HTMLElement> {
707
675
  static convertSubstringInPlainObject<Type extends Mapping<unknown> = PlainObject>(this: void, object: Type, pattern: RegExp | string, replacement: string): Type;
708
676
  /**
709
677
  * Copies given object (of any type) into optionally given destination.
710
- * @param this - Indicates an unbound method.
711
678
  * @param source - Object to copy.
712
679
  * @param recursionLimit - Specifies how deep we should traverse into given
713
680
  * object recursively.
@@ -727,7 +694,6 @@ export declare class Tools<TElement = HTMLElement> {
727
694
  static copy<Type = unknown>(this: void, source: Type, recursionLimit?: number, recursionEndValue?: unknown, destination?: null | Type, cyclic?: boolean, knownReferences?: Array<unknown>, recursionLevel?: number): Type;
728
695
  /**
729
696
  * Determine the internal JavaScript [[Class]] of an object.
730
- * @param this - Indicates an unbound method.
731
697
  * @param value - Value to analyze.
732
698
  *
733
699
  * @returns Name of determined type.
@@ -737,7 +703,6 @@ export declare class Tools<TElement = HTMLElement> {
737
703
  * Returns true if given items are equal for given property list. If
738
704
  * property list isn't set all properties will be checked. All keys which
739
705
  * starts with one of the exception prefixes will be omitted.
740
- * @param this - Indicates an unbound method.
741
706
  * @param firstValue - First object to compare.
742
707
  * @param secondValue - Second object to compare.
743
708
  *
@@ -766,7 +731,6 @@ export declare class Tools<TElement = HTMLElement> {
766
731
  * Searches for nested mappings with given indicator key and resolves
767
732
  * marked values. Additionally all objects are wrapped with a proxy to
768
733
  * dynamically resolve nested properties.
769
- * @param this - Indicates an unbound method.
770
734
  * @param object - Given mapping to resolve.
771
735
  * @param scope - Scope to to use evaluate again.
772
736
  * @param selfReferenceName - Name to use for reference to given object.
@@ -780,7 +744,6 @@ export declare class Tools<TElement = HTMLElement> {
780
744
  static evaluateDynamicData<Type = unknown>(this: void, object: null | RecursiveEvaluateable<Type>, scope?: Mapping<unknown>, selfReferenceName?: string, expressionIndicatorKey?: string, executionIndicatorKey?: string): Type;
781
745
  /**
782
746
  * Removes properties in objects where a dynamic indicator lives.
783
- * @param this - Indicates an unbound method.
784
747
  * @param data - Object to traverse recursively.
785
748
  * @param expressionIndicators - Property key to remove.
786
749
  *
@@ -791,7 +754,6 @@ export declare class Tools<TElement = HTMLElement> {
791
754
  * Extends given target object with given sources object. As target and
792
755
  * sources many expandable types are allowed but target and sources have to
793
756
  * to come from the same type.
794
- * @param this - Indicates an unbound method.
795
757
  * @param targetOrDeepIndicator - Maybe the target or deep indicator.
796
758
  * @param targetOrSource - Target or source object; depending on first
797
759
  * argument.
@@ -803,7 +765,6 @@ export declare class Tools<TElement = HTMLElement> {
803
765
  /**
804
766
  * Retrieves substructure in given object referenced by given selector
805
767
  * path.
806
- * @param this - Indicates an unbound method.
807
768
  * @param target - Object to search in.
808
769
  * @param selector - Selector path.
809
770
  * @param skipMissingLevel - Indicates to skip missing level in given path.
@@ -815,7 +776,6 @@ export declare class Tools<TElement = HTMLElement> {
815
776
  /**
816
777
  * Generates a proxy handler which forwards all operations to given object
817
778
  * as there wouldn't be a proxy.
818
- * @param this - Indicates an unbound method.
819
779
  * @param target - Object to proxy.
820
780
  * @param methodNames - Mapping of operand name to object specific method
821
781
  * name.
@@ -827,7 +787,6 @@ export declare class Tools<TElement = HTMLElement> {
827
787
  * Slices all properties from given object which does not match provided
828
788
  * object mask. Items can be explicitly white listed via "include" mask
829
789
  * configuration or black listed via "exclude" mask configuration.
830
- * @param this - Indicates an unbound method.
831
790
  * @param object - Object to slice.
832
791
  * @param mask - Mask configuration.
833
792
  *
@@ -838,7 +797,6 @@ export declare class Tools<TElement = HTMLElement> {
838
797
  /**
839
798
  * Modifies given target corresponding to given source and removes source
840
799
  * modification infos.
841
- * @param this - Indicates an unbound method.
842
800
  * @param target - Object to modify.
843
801
  * @param source - Source object to load modifications from.
844
802
  * @param removeIndicatorKey - Indicator property name or value to mark a
@@ -861,7 +819,6 @@ export declare class Tools<TElement = HTMLElement> {
861
819
  static modifyObject<T = unknown>(this: void, target: T, source: unknown, removeIndicatorKey?: string, prependIndicatorKey?: string, appendIndicatorKey?: string, positionPrefix?: string, positionSuffix?: string, parentSource?: unknown, parentKey?: unknown): T | null;
862
820
  /**
863
821
  * Interprets a date object from given artefact.
864
- * @param this - Indicates an unbound method.
865
822
  * @param value - To interpret.
866
823
  * @param interpretAsUTC - Identifies if given date should be interpret as
867
824
  * utc.
@@ -872,7 +829,6 @@ export declare class Tools<TElement = HTMLElement> {
872
829
  static normalizeDateTime(this: void, value?: string | null | number | Date, interpretAsUTC?: boolean): Date | null;
873
830
  /**
874
831
  * Removes given key from given object recursively.
875
- * @param this - Indicates an unbound method.
876
832
  * @param object - Object to process.
877
833
  * @param keys - List of keys to remove.
878
834
  *
@@ -881,7 +837,6 @@ export declare class Tools<TElement = HTMLElement> {
881
837
  static removeKeyPrefixes<T>(this: void, object: T, keys?: Array<string> | string): T;
882
838
  /**
883
839
  * Represents given object as formatted string.
884
- * @param this - Indicates an unbound method.
885
840
  * @param object - Object to represent.
886
841
  * @param indention - String (usually whitespaces) to use as indention.
887
842
  * @param initialIndention - String (usually whitespaces) to use as
@@ -896,7 +851,6 @@ export declare class Tools<TElement = HTMLElement> {
896
851
  static represent(this: void, object: unknown, indention?: string, initialIndention?: string, maximumNumberOfLevelsReachedIdentifier?: number | string, numberOfLevels?: number): string;
897
852
  /**
898
853
  * Sort given objects keys.
899
- * @param this - Indicates an unbound method.
900
854
  * @param object - Object which keys should be sorted.
901
855
  *
902
856
  * @returns Sorted list of given keys.
@@ -904,7 +858,6 @@ export declare class Tools<TElement = HTMLElement> {
904
858
  static sort(this: void, object: unknown): Array<unknown>;
905
859
  /**
906
860
  * Removes a proxy from given data structure recursively.
907
- * @param this - Indicates an unbound method.
908
861
  * @param object - Object to proxy.
909
862
  * @param seenObjects - Tracks all already processed objects to avoid
910
863
  * endless loops (usually only needed for internal purpose).
@@ -914,7 +867,6 @@ export declare class Tools<TElement = HTMLElement> {
914
867
  static unwrapProxy<T = unknown>(this: void, object: ProxyType<T> | T, seenObjects?: Set<unknown>): T;
915
868
  /**
916
869
  * Summarizes given property of given item list.
917
- * @param this - Indicates an unbound method.
918
870
  * @param data - Array of objects with given property name.
919
871
  * @param propertyName - Property name to summarize.
920
872
  * @param defaultValue - Value to return if property values doesn't match.
@@ -927,7 +879,6 @@ export declare class Tools<TElement = HTMLElement> {
927
879
  * names. If given property names are empty each attribute will be
928
880
  * considered. The empty string, "null" and "undefined" will be interpreted
929
881
  * as empty.
930
- * @param this - Indicates an unbound method.
931
882
  * @param data - Data to filter.
932
883
  * @param propertyNames - Properties to consider.
933
884
  *
@@ -937,7 +888,6 @@ export declare class Tools<TElement = HTMLElement> {
937
888
  /**
938
889
  * Extracts all properties from all items wich occur in given property
939
890
  * names.
940
- * @param this - Indicates an unbound method.
941
891
  * @param data - Data where each item should be sliced.
942
892
  * @param propertyNames - Property names to extract.
943
893
  *
@@ -946,7 +896,6 @@ export declare class Tools<TElement = HTMLElement> {
946
896
  static arrayExtract<T = Mapping<unknown>>(this: void, data: unknown, propertyNames: Array<string>): Array<T>;
947
897
  /**
948
898
  * Extracts all values which matches given regular expression.
949
- * @param this - Indicates an unbound method.
950
899
  * @param data - Data to filter.
951
900
  * @param regularExpression - Pattern to match for.
952
901
  *
@@ -955,7 +904,6 @@ export declare class Tools<TElement = HTMLElement> {
955
904
  static arrayExtractIfMatches(this: void, data: unknown, regularExpression: string | RegExp): Array<string>;
956
905
  /**
957
906
  * Filters given data if given property is set or not.
958
- * @param this - Indicates an unbound method.
959
907
  * @param data - Data to filter.
960
908
  * @param propertyName - Property name to check for existence.
961
909
  *
@@ -966,7 +914,6 @@ export declare class Tools<TElement = HTMLElement> {
966
914
  /**
967
915
  * Extract given data where specified property value matches given
968
916
  * patterns.
969
- * @param this - Indicates an unbound method.
970
917
  * @param data - Data to filter.
971
918
  * @param propertyPattern - Mapping of property names to pattern.
972
919
  *
@@ -978,7 +925,6 @@ export declare class Tools<TElement = HTMLElement> {
978
925
  * Object key which will be compared are given by "keys". If an empty array
979
926
  * is given each key will be compared. If an object is given corresponding
980
927
  * initial data key will be mapped to referenced new data key.
981
- * @param this - Indicates an unbound method.
982
928
  * @param first - Referenced data to check for.
983
929
  * @param second - Data to check for existence.
984
930
  * @param keys - Keys to define equality.
@@ -991,7 +937,6 @@ export declare class Tools<TElement = HTMLElement> {
991
937
  static arrayIntersect<T = unknown>(this: void, first: unknown, second: unknown, keys?: Array<string> | Mapping<number | string>, strict?: boolean): Array<T>;
992
938
  /**
993
939
  * Converts given object into an array.
994
- * @param this - Indicates an unbound method.
995
940
  * @param object - Target to convert.
996
941
  *
997
942
  * @returns Generated array.
@@ -999,7 +944,6 @@ export declare class Tools<TElement = HTMLElement> {
999
944
  static arrayMake<T = unknown>(this: void, object: unknown): Array<T>;
1000
945
  /**
1001
946
  * Creates a list of items within given range.
1002
- * @param this - Indicates an unbound method.
1003
947
  * @param range - Array of lower and upper bounds. If only one value is
1004
948
  * given lower bound will be assumed to be zero. Both integers have to be
1005
949
  * positive and will be contained in the resulting array. If more than two
@@ -1012,7 +956,6 @@ export declare class Tools<TElement = HTMLElement> {
1012
956
  static arrayMakeRange(this: void, range: number | [number] | [number, number] | Array<number>, step?: number, ignoreLastStep?: boolean): Array<number>;
1013
957
  /**
1014
958
  * Merge the contents of two arrays together into the first array.
1015
- * @param this - Indicates an unbound method.
1016
959
  * @param target - Target array.
1017
960
  * @param source - Source array.
1018
961
  *
@@ -1021,7 +964,6 @@ export declare class Tools<TElement = HTMLElement> {
1021
964
  static arrayMerge<T = unknown>(this: void, target: Array<T>, source: Array<T>): Array<T>;
1022
965
  /**
1023
966
  * Generates a list if pagination symbols to render a pagination from.
1024
- * @param this - Indicates an unbound method.
1025
967
  * @param options - Configure bounds and current page of pagination to
1026
968
  * determine.
1027
969
  * @param options.boundaryCount - Indicates where to start pagination
@@ -1046,7 +988,6 @@ export declare class Tools<TElement = HTMLElement> {
1046
988
  static arrayPaginate(this: void, options?: Partial<PaginateOptions>): Array<Page>;
1047
989
  /**
1048
990
  * Generates all permutations of given iterable.
1049
- * @param this - Indicates an unbound method.
1050
991
  * @param data - Array like object.
1051
992
  *
1052
993
  * @returns Array of permuted arrays.
@@ -1054,7 +995,6 @@ export declare class Tools<TElement = HTMLElement> {
1054
995
  static arrayPermutate<T = unknown>(this: void, data: Array<T>): Array<Array<T>>;
1055
996
  /**
1056
997
  * Generates all lengths permutations of given iterable.
1057
- * @param this - Indicates an unbound method.
1058
998
  * @param data - Array like object.
1059
999
  * @param minimalSubsetLength - Defines how long the minimal subset length
1060
1000
  * should be.
@@ -1064,7 +1004,6 @@ export declare class Tools<TElement = HTMLElement> {
1064
1004
  static arrayPermutateLength<T = unknown>(this: void, data: Array<T>, minimalSubsetLength?: number): Array<Array<T>>;
1065
1005
  /**
1066
1006
  * Sums up given property of given item list.
1067
- * @param this - Indicates an unbound method.
1068
1007
  * @param data - The objects with specified property to sum up.
1069
1008
  * @param propertyName - Property name to sum up its value.
1070
1009
  *
@@ -1073,7 +1012,6 @@ export declare class Tools<TElement = HTMLElement> {
1073
1012
  static arraySumUpProperty(this: void, data: unknown, propertyName: string): number;
1074
1013
  /**
1075
1014
  * Adds an item to another item as array connection (many to one).
1076
- * @param this - Indicates an unbound method.
1077
1015
  * @param item - Item where the item should be appended to.
1078
1016
  * @param target - Target to add to given item.
1079
1017
  * @param name - Name of the target connection.
@@ -1085,7 +1023,6 @@ export declare class Tools<TElement = HTMLElement> {
1085
1023
  static arrayAppendAdd<T = unknown>(this: void, item: Mapping<T>, target: unknown, name: string, checkIfExists?: boolean): Mapping<T>;
1086
1024
  /**
1087
1025
  * Removes given target on given list.
1088
- * @param this - Indicates an unbound method.
1089
1026
  * @param list - Array to splice.
1090
1027
  * @param target - Target to remove from given list.
1091
1028
  * @param strict - Indicates whether to fire an exception if given target
@@ -1096,7 +1033,6 @@ export declare class Tools<TElement = HTMLElement> {
1096
1033
  static arrayRemove<T = unknown>(this: void, list: Array<T>, target: T, strict?: boolean): Array<T>;
1097
1034
  /**
1098
1035
  * Sorts given object of dependencies in a topological order.
1099
- * @param this - Indicates an unbound method.
1100
1036
  * @param items - Items to sort.
1101
1037
  *
1102
1038
  * @returns Sorted array of given items respecting their dependencies.
@@ -1105,7 +1041,6 @@ export declare class Tools<TElement = HTMLElement> {
1105
1041
  /**
1106
1042
  * Makes all values in given iterable unique by removing duplicates (The
1107
1043
  * first occurrences will be left).
1108
- * @param this - Indicates an unbound method.
1109
1044
  * @param data - Array like object.
1110
1045
  *
1111
1046
  * @returns Sliced version of given object.
@@ -1114,7 +1049,6 @@ export declare class Tools<TElement = HTMLElement> {
1114
1049
  /**
1115
1050
  * Translates given string into the regular expression validated
1116
1051
  * representation.
1117
- * @param this - Indicates an unbound method.
1118
1052
  * @param value - String to convert.
1119
1053
  * @param excludeSymbols - Symbols not to escape.
1120
1054
  *
@@ -1123,7 +1057,6 @@ export declare class Tools<TElement = HTMLElement> {
1123
1057
  static stringEscapeRegularExpressions(this: void, value: string, excludeSymbols?: Array<string>): string;
1124
1058
  /**
1125
1059
  * Translates given name into a valid javaScript one.
1126
- * @param this - Indicates an unbound method.
1127
1060
  * @param name - Name to convert.
1128
1061
  * @param allowedSymbols - String of symbols which should be allowed within
1129
1062
  * a variable name (not the first character).
@@ -1136,7 +1069,6 @@ export declare class Tools<TElement = HTMLElement> {
1136
1069
  * component. We need a custom method because "encodeURIComponent()" is too
1137
1070
  * aggressive and encodes stuff that doesn't have to be encoded per
1138
1071
  * "http://tools.ietf.org/html/rfc3986:".
1139
- * @param this - Indicates an unbound method.
1140
1072
  * @param url - URL to encode.
1141
1073
  * @param encodeSpaces - Indicates whether given url should encode
1142
1074
  * whitespaces as "+" or "%20".
@@ -1146,7 +1078,6 @@ export declare class Tools<TElement = HTMLElement> {
1146
1078
  static stringEncodeURIComponent(this: void, url: string, encodeSpaces?: boolean): string;
1147
1079
  /**
1148
1080
  * Appends a path selector to the given path if there isn't one yet.
1149
- * @param this - Indicates an unbound method.
1150
1081
  * @param path - The path for appending a selector.
1151
1082
  * @param pathSeparator - The selector for appending to path.
1152
1083
  *
@@ -1155,7 +1086,6 @@ export declare class Tools<TElement = HTMLElement> {
1155
1086
  static stringAddSeparatorToPath(this: void, path: string, pathSeparator?: string): string;
1156
1087
  /**
1157
1088
  * Checks if given path has given path prefix.
1158
- * @param this - Indicates an unbound method.
1159
1089
  * @param prefix - Path prefix to search for.
1160
1090
  * @param path - Path to search in.
1161
1091
  * @param separator - Delimiter to use in path (default is the posix
@@ -1168,7 +1098,6 @@ export declare class Tools<TElement = HTMLElement> {
1168
1098
  * Extracts domain name from given url. If no explicit domain name given
1169
1099
  * current domain name will be assumed. If no parameter given current
1170
1100
  * domain name will be determined.
1171
- * @param this - Indicates an unbound method.
1172
1101
  * @param url - The url to extract domain from.
1173
1102
  * @param fallback - The fallback host name if no one exits in given url
1174
1103
  * (default is current hostname).
@@ -1181,7 +1110,6 @@ export declare class Tools<TElement = HTMLElement> {
1181
1110
  * and no fallback is defined current port number will be assumed for local
1182
1111
  * links. For external links 80 will be assumed for http protocols and 443
1183
1112
  * for https protocols.
1184
- * @param this - Indicates an unbound method.
1185
1113
  * @param url - The url to extract port from.
1186
1114
  * @param fallback - Fallback port number if no explicit one was found.
1187
1115
  * Default is derived from current protocol name.
@@ -1193,7 +1121,6 @@ export declare class Tools<TElement = HTMLElement> {
1193
1121
  * Extracts protocol name from given url. If no explicit url is given,
1194
1122
  * current protocol will be assumed. If no parameter given current protocol
1195
1123
  * number will be determined.
1196
- * @param this - Indicates an unbound method.
1197
1124
  * @param url - The url to extract protocol from.
1198
1125
  * @param fallback - Fallback port to use if no protocol exists in given
1199
1126
  * url (default is current protocol).
@@ -1204,7 +1131,6 @@ export declare class Tools<TElement = HTMLElement> {
1204
1131
  /**
1205
1132
  * Read a page's GET URL variables and return them as an associative array
1206
1133
  * and preserves ordering.
1207
- * @param this - Indicates an unbound method.
1208
1134
  * @param keyToGet - If provided the corresponding value for given key is
1209
1135
  * returned or full object otherwise.
1210
1136
  * @param allowDuplicates - Indicates whether to return arrays of values or
@@ -1233,7 +1159,6 @@ export declare class Tools<TElement = HTMLElement> {
1233
1159
  /**
1234
1160
  * Checks if given url points to another "service" than second given url.
1235
1161
  * If no second given url provided current url will be assumed.
1236
- * @param this - Indicates an unbound method.
1237
1162
  * @param url - URL to check against second url.
1238
1163
  * @param referenceURL - URL to check against first url.
1239
1164
  *
@@ -1243,7 +1168,6 @@ export declare class Tools<TElement = HTMLElement> {
1243
1168
  static stringServiceURLEquals(this: void, url: string, referenceURL?: string): boolean;
1244
1169
  /**
1245
1170
  * Normalized given website url.
1246
- * @param this - Indicates an unbound method.
1247
1171
  * @param url - Uniform resource locator to normalize.
1248
1172
  *
1249
1173
  * @returns Normalized result.
@@ -1251,7 +1175,6 @@ export declare class Tools<TElement = HTMLElement> {
1251
1175
  static stringNormalizeURL(this: void, url: string): string;
1252
1176
  /**
1253
1177
  * Represents given website url.
1254
- * @param this - Indicates an unbound method.
1255
1178
  * @param url - Uniform resource locator to represent.
1256
1179
  *
1257
1180
  * @returns Represented result.
@@ -1259,7 +1182,6 @@ export declare class Tools<TElement = HTMLElement> {
1259
1182
  static stringRepresentURL(this: void, url: unknown): string;
1260
1183
  /**
1261
1184
  * Converts a camel cased string to its delimited string version.
1262
- * @param this - Indicates an unbound method.
1263
1185
  * @param value - The string to format.
1264
1186
  * @param delimiter - Delimiter string
1265
1187
  * @param abbreviations - Collection of shortcut words to represent upper
@@ -1270,7 +1192,6 @@ export declare class Tools<TElement = HTMLElement> {
1270
1192
  static stringCamelCaseToDelimited(this: void, value: string, delimiter?: string, abbreviations?: Array<string> | null): string;
1271
1193
  /**
1272
1194
  * Converts a string to its capitalize representation.
1273
- * @param this - Indicates an unbound method.
1274
1195
  * @param string - The string to format.
1275
1196
  *
1276
1197
  * @returns The formatted string.
@@ -1278,7 +1199,6 @@ export declare class Tools<TElement = HTMLElement> {
1278
1199
  static stringCapitalize(this: void, string: string): string;
1279
1200
  /**
1280
1201
  * Compresses given style attribute value.
1281
- * @param this - Indicates an unbound method.
1282
1202
  * @param styleValue - Style value to compress.
1283
1203
  *
1284
1204
  * @returns The compressed value.
@@ -1286,7 +1206,6 @@ export declare class Tools<TElement = HTMLElement> {
1286
1206
  static stringCompressStyleValue(this: void, styleValue: string): string;
1287
1207
  /**
1288
1208
  * Decodes all html symbols in text nodes in given html string.
1289
- * @param this - Indicates an unbound method.
1290
1209
  * @param htmlString - HTML string to decode.
1291
1210
  *
1292
1211
  * @returns Decoded html string.
@@ -1294,7 +1213,6 @@ export declare class Tools<TElement = HTMLElement> {
1294
1213
  static stringDecodeHTMLEntities(this: void, htmlString: string): null | string;
1295
1214
  /**
1296
1215
  * Converts a delimited string to its camel case representation.
1297
- * @param this - Indicates an unbound method.
1298
1216
  * @param value - The string to format.
1299
1217
  * @param delimiter - Delimiter string to use.
1300
1218
  * @param abbreviations - Collection of shortcut words to represent upper
@@ -1309,7 +1227,6 @@ export declare class Tools<TElement = HTMLElement> {
1309
1227
  static stringDelimitedToCamelCase(this: void, value: string, delimiter?: string, abbreviations?: Array<string> | null, preserveWrongFormattedAbbreviations?: boolean, removeMultipleDelimiter?: boolean): string;
1310
1228
  /**
1311
1229
  * Compiles a given string as expression with given scope names.
1312
- * @param this - Indicates an unbound method.
1313
1230
  * @param expression - The string to interpret.
1314
1231
  * @param scope - Scope to extract names from.
1315
1232
  * @param execute - Indicates whether to execute or evaluate.
@@ -1320,7 +1237,6 @@ export declare class Tools<TElement = HTMLElement> {
1320
1237
  static stringCompile<T = string>(this: void, expression: string, scope?: Array<string> | Mapping<unknown> | string, execute?: boolean): CompilationResult<T>;
1321
1238
  /**
1322
1239
  * Evaluates a given string as expression against given scope.
1323
- * @param this - Indicates an unbound method.
1324
1240
  * @param expression - The string to interpret.
1325
1241
  * @param scope - Scope to render against.
1326
1242
  * @param execute - Indicates whether to execute or evaluate.
@@ -1332,7 +1248,6 @@ export declare class Tools<TElement = HTMLElement> {
1332
1248
  /**
1333
1249
  * Finds the string match of given query in given target text by applying
1334
1250
  * given normalisation function to target and query.
1335
- * @param this - Indicates an unbound method.
1336
1251
  * @param target - Target to search in.
1337
1252
  * @param query - Search string to search for.
1338
1253
  * @param normalizer - Function to use as normalisation for queries and
@@ -1345,7 +1260,6 @@ export declare class Tools<TElement = HTMLElement> {
1345
1260
  static stringFindNormalizedMatchRange(this: void, target: unknown, query: unknown, normalizer?: (value: unknown) => string, skipTagDelimitedParts?: null | [string, string]): Array<number> | null;
1346
1261
  /**
1347
1262
  * Fixes known encoding problems in given data.
1348
- * @param this - Indicates an unbound method.
1349
1263
  * @param data - To process.
1350
1264
  *
1351
1265
  * @returns Processed data.
@@ -1354,7 +1268,6 @@ export declare class Tools<TElement = HTMLElement> {
1354
1268
  /**
1355
1269
  * Performs a string formation. Replaces every placeholder "{i}" with the
1356
1270
  * i'th argument.
1357
- * @param this - Indicates an unbound method.
1358
1271
  * @param string - The string to format.
1359
1272
  * @param additionalArguments - Additional arguments are interpreted as
1360
1273
  * replacements for string formatting.
@@ -1364,7 +1277,6 @@ export declare class Tools<TElement = HTMLElement> {
1364
1277
  static stringFormat(this: void, string: string, ...additionalArguments: Array<unknown>): string;
1365
1278
  /**
1366
1279
  * Calculates the edit (levenstein) distance between two given strings.
1367
- * @param this - Indicates an unbound method.
1368
1280
  * @param first - First string to compare.
1369
1281
  * @param second - Second string to compare.
1370
1282
  *
@@ -1374,7 +1286,6 @@ export declare class Tools<TElement = HTMLElement> {
1374
1286
  /**
1375
1287
  * Validates the current string for using in a regular expression pattern.
1376
1288
  * Special regular expression chars will be escaped.
1377
- * @param this - Indicates an unbound method.
1378
1289
  * @param value - The string to format.
1379
1290
  *
1380
1291
  * @returns The formatted string.
@@ -1382,7 +1293,6 @@ export declare class Tools<TElement = HTMLElement> {
1382
1293
  static stringGetRegularExpressionValidated(this: void, value: string): string;
1383
1294
  /**
1384
1295
  * Interprets given content string as date time.
1385
- * @param this - Indicates an unbound method.
1386
1296
  * @param value - Date time string to interpret.
1387
1297
  * @param interpretAsUTC - Identifies if given date should be interpret as
1388
1298
  * utc.
@@ -1392,7 +1302,6 @@ export declare class Tools<TElement = HTMLElement> {
1392
1302
  static stringInterpretDateTime(this: void, value: string, interpretAsUTC?: boolean): Date | null;
1393
1303
  /**
1394
1304
  * Converts a string to its lower case representation.
1395
- * @param this - Indicates an unbound method.
1396
1305
  * @param string - The string to format.
1397
1306
  *
1398
1307
  * @returns The formatted string.
@@ -1400,7 +1309,6 @@ export declare class Tools<TElement = HTMLElement> {
1400
1309
  static stringLowerCase(this: void, string: string): string;
1401
1310
  /**
1402
1311
  * Wraps given mark strings in given target with given marker.
1403
- * @param this - Indicates an unbound method.
1404
1312
  * @param target - String to search for marker.
1405
1313
  * @param givenWords - String or array of strings to search in target for.
1406
1314
  * @param options - Defines highlighting behavior.
@@ -1415,7 +1323,6 @@ export declare class Tools<TElement = HTMLElement> {
1415
1323
  static stringMark(this: void, target: unknown, givenWords?: Array<string> | string, options?: Partial<StringMarkOptions>): unknown;
1416
1324
  /**
1417
1325
  * Implements the md5 hash algorithm.
1418
- * @param this - Indicates an unbound method.
1419
1326
  * @param value - Value to calculate md5 hash for.
1420
1327
  * @param onlyAscii - Set to true if given input has ascii characters only
1421
1328
  * to get more performance.
@@ -1425,7 +1332,6 @@ export declare class Tools<TElement = HTMLElement> {
1425
1332
  static stringMD5(this: void, value: string, onlyAscii?: boolean): string;
1426
1333
  /**
1427
1334
  * Normalizes given phone number for automatic dialing or comparison.
1428
- * @param this - Indicates an unbound method.
1429
1335
  * @param value - Number to normalize.
1430
1336
  * @param dialable - Indicates whether the result should be dialed or
1431
1337
  * represented as lossless data.
@@ -1435,7 +1341,6 @@ export declare class Tools<TElement = HTMLElement> {
1435
1341
  static stringNormalizePhoneNumber(this: void, value: unknown, dialable?: boolean): string;
1436
1342
  /**
1437
1343
  * Normalizes given zip code for automatic address processing.
1438
- * @param this - Indicates an unbound method.
1439
1344
  * @param value - Number to normalize.
1440
1345
  *
1441
1346
  * @returns Normalized number.
@@ -1444,7 +1349,6 @@ export declare class Tools<TElement = HTMLElement> {
1444
1349
  /**
1445
1350
  * Converts given serialized, base64 encoded or file path given object into
1446
1351
  * a native javaScript one if possible.
1447
- * @param this - Indicates an unbound method.
1448
1352
  * @param serializedObject - Object as string.
1449
1353
  * @param scope - An optional scope which will be used to evaluate given
1450
1354
  * object in.
@@ -1456,7 +1360,6 @@ export declare class Tools<TElement = HTMLElement> {
1456
1360
  /**
1457
1361
  * Represents given phone number. NOTE: Currently only support german phone
1458
1362
  * numbers.
1459
- * @param this - Indicates an unbound method.
1460
1363
  * @param value - Number to format.
1461
1364
  *
1462
1365
  * @returns Formatted number.
@@ -1464,7 +1367,6 @@ export declare class Tools<TElement = HTMLElement> {
1464
1367
  static stringRepresentPhoneNumber(this: void, value: unknown): string;
1465
1368
  /**
1466
1369
  * Slices all none numbers but preserves last separator.
1467
- * @param this - Indicates an unbound method.
1468
1370
  * @param value - String to process.
1469
1371
  *
1470
1372
  * @returns - Sliced given value.
@@ -1472,7 +1374,6 @@ export declare class Tools<TElement = HTMLElement> {
1472
1374
  static stringSliceAllExceptNumberAndLastSeperator(this: void, value: string): string;
1473
1375
  /**
1474
1376
  * Slice weekday from given date representation.
1475
- * @param this - Indicates an unbound method.
1476
1377
  * @param value - String to process.
1477
1378
  *
1478
1379
  * @returns Sliced given string.
@@ -1487,7 +1388,6 @@ export declare class Tools<TElement = HTMLElement> {
1487
1388
  stringNormalizeDomNodeSelector: (selector: string) => string;
1488
1389
  /**
1489
1390
  * Determines corresponding utc timestamp for given date object.
1490
- * @param this - Indicates an unbound method.
1491
1391
  * @param value - Date to convert.
1492
1392
  * @param inMilliseconds - Indicates whether given number should be in
1493
1393
  * seconds (default) or milliseconds.
@@ -1497,7 +1397,6 @@ export declare class Tools<TElement = HTMLElement> {
1497
1397
  static numberGetUTCTimestamp(this: void, value?: Date | null | number | string, inMilliseconds?: boolean): number;
1498
1398
  /**
1499
1399
  * Checks if given object is java scripts native "Number.NaN" object.
1500
- * @param this - Indicates an unbound method.
1501
1400
  * @param value - Value to check.
1502
1401
  *
1503
1402
  * @returns Returns whether given value is not a number or not.
@@ -1505,7 +1404,6 @@ export declare class Tools<TElement = HTMLElement> {
1505
1404
  static numberIsNotANumber(this: void, value: unknown): boolean;
1506
1405
  /**
1507
1406
  * Rounds a given number accurate to given number of digits.
1508
- * @param this - Indicates an unbound method.
1509
1407
  * @param number - The number to round.
1510
1408
  * @param digits - The number of digits after comma.
1511
1409
  *
@@ -1514,7 +1412,6 @@ export declare class Tools<TElement = HTMLElement> {
1514
1412
  static numberRound(this: void, number: number, digits?: number): number;
1515
1413
  /**
1516
1414
  * Rounds a given number up accurate to given number of digits.
1517
- * @param this - Indicates an unbound method.
1518
1415
  * @param number - The number to round.
1519
1416
  * @param digits - The number of digits after comma.
1520
1417
  *
@@ -1523,7 +1420,6 @@ export declare class Tools<TElement = HTMLElement> {
1523
1420
  static numberCeil(this: void, number: number, digits?: number): number;
1524
1421
  /**
1525
1422
  * Rounds a given number down accurate to given number of digits.
1526
- * @param this - Indicates an unbound method.
1527
1423
  * @param number - The number to round.
1528
1424
  * @param digits - The number of digits after comma.
1529
1425
  *
@@ -1532,7 +1428,6 @@ export declare class Tools<TElement = HTMLElement> {
1532
1428
  static numberFloor(this: void, number: number, digits?: number): number;
1533
1429
  /**
1534
1430
  * Checks if given url response with given status code.
1535
- * @param this - Indicates an unbound method.
1536
1431
  * @param url - Url to check reachability.
1537
1432
  *
1538
1433
  * @param givenOptions - Options to configure.
@@ -1555,7 +1450,6 @@ export declare class Tools<TElement = HTMLElement> {
1555
1450
  static checkReachability(this: void, url: string, givenOptions?: RecursivePartial<CheckReachabilityOptions>): ReturnType<typeof fetch>;
1556
1451
  /**
1557
1452
  * Checks if given url isn't reachable.
1558
- * @param this - Indicates an unbound method.
1559
1453
  * @param url - Url to check reachability.
1560
1454
  *
1561
1455
  * @param givenOptions - Options to configure.
@@ -1577,7 +1471,6 @@ export declare class Tools<TElement = HTMLElement> {
1577
1471
  static checkUnreachability(this: void, url: string, givenOptions?: RecursivePartial<CheckReachabilityOptions>): Promise<Error | null | Promise<Error | null>>;
1578
1472
  /**
1579
1473
  * Send given data to a given iframe.
1580
- * @param this - Indicates an unbound method.
1581
1474
  * @param target - Name of the target iframe or the target iframe itself.
1582
1475
  * @param url - URL to send to data to.
1583
1476
  * @param data - Data holding object to send data to.
@@ -1606,7 +1499,6 @@ export declare class Tools<TElement = HTMLElement> {
1606
1499
  * Copies given source directory via path to given target directory
1607
1500
  * location with same target name as source file has or copy to given
1608
1501
  * complete target directory path.
1609
- * @param this - Indicates an unbound method.
1610
1502
  * @param sourcePath - Path to directory to copy.
1611
1503
  * @param targetPath - Target directory or complete directory location to
1612
1504
  * copy in.
@@ -1621,7 +1513,6 @@ export declare class Tools<TElement = HTMLElement> {
1621
1513
  * Copies given source directory via path to given target directory
1622
1514
  * location with same target name as source file has or copy to given
1623
1515
  * complete target directory path.
1624
- * @param this - Indicates an unbound method.
1625
1516
  * @param sourcePath - Path to directory to copy.
1626
1517
  * @param targetPath - Target directory or complete directory location to
1627
1518
  * copy in.
@@ -1636,7 +1527,6 @@ export declare class Tools<TElement = HTMLElement> {
1636
1527
  * Copies given source file via path to given target directory location
1637
1528
  * with same target name as source file has or copy to given complete
1638
1529
  * target file path.
1639
- * @param this - Indicates an unbound method.
1640
1530
  * @param sourcePath - Path to file to copy.
1641
1531
  * @param targetPath - Target directory or complete file location to copy
1642
1532
  * to.
@@ -1650,7 +1540,6 @@ export declare class Tools<TElement = HTMLElement> {
1650
1540
  * Copies given source file via path to given target directory location
1651
1541
  * with same target name as source file has or copy to given complete
1652
1542
  * target file path.
1653
- * @param this - Indicates an unbound method.
1654
1543
  * @param sourcePath - Path to file to copy.
1655
1544
  * @param targetPath - Target directory or complete file location to copy
1656
1545
  * to.
@@ -1662,7 +1551,6 @@ export declare class Tools<TElement = HTMLElement> {
1662
1551
  static copyFileSync(this: void, sourcePath: string, targetPath: string, readOptions?: PlainObject, writeOptions?: PlainObject): string;
1663
1552
  /**
1664
1553
  * Checks if given path points to a valid directory.
1665
- * @param this - Indicates an unbound method.
1666
1554
  * @param filePath - Path to directory.
1667
1555
  *
1668
1556
  * @returns A promise holding a boolean which indicates directory
@@ -1671,7 +1559,6 @@ export declare class Tools<TElement = HTMLElement> {
1671
1559
  static isDirectory(this: void, filePath: string): Promise<boolean>;
1672
1560
  /**
1673
1561
  * Checks if given path points to a valid directory.
1674
- * @param this - Indicates an unbound method.
1675
1562
  * @param filePath - Path to directory.
1676
1563
  *
1677
1564
  * @returns A boolean which indicates directory existents.
@@ -1679,7 +1566,6 @@ export declare class Tools<TElement = HTMLElement> {
1679
1566
  static isDirectorySync(this: void, filePath: string): boolean;
1680
1567
  /**
1681
1568
  * Checks if given path points to a valid file.
1682
- * @param this - Indicates an unbound method.
1683
1569
  * @param filePath - Path to directory.
1684
1570
  *
1685
1571
  * @returns A promise holding a boolean which indicates directory
@@ -1688,7 +1574,6 @@ export declare class Tools<TElement = HTMLElement> {
1688
1574
  static isFile(this: void, filePath: string): Promise<boolean>;
1689
1575
  /**
1690
1576
  * Checks if given path points to a valid file.
1691
- * @param this - Indicates an unbound method.
1692
1577
  * @param filePath - Path to file.
1693
1578
  *
1694
1579
  * @returns A boolean which indicates file existence.
@@ -1698,7 +1583,6 @@ export declare class Tools<TElement = HTMLElement> {
1698
1583
  * Iterates through given directory structure recursively and calls given
1699
1584
  * callback for each found file. Callback gets file path and corresponding
1700
1585
  * stat object as argument.
1701
- * @param this - Indicates an unbound method.
1702
1586
  * @param directoryPath - Path to directory structure to traverse.
1703
1587
  * @param callback - Function to invoke for each traversed file and
1704
1588
  * potentially manipulate further traversing in alphabetical sorted order.
@@ -1715,7 +1599,6 @@ export declare class Tools<TElement = HTMLElement> {
1715
1599
  * Iterates through given directory structure recursively and calls given
1716
1600
  * callback for each found file. Callback gets file path and corresponding
1717
1601
  * stats object as argument.
1718
- * @param this - Indicates an unbound method.
1719
1602
  * @param directoryPath - Path to directory structure to traverse.
1720
1603
  * @param callback - Function to invoke for each traversed file.
1721
1604
  * @param options - Options to use for nested "readdir" calls.
@@ -1729,7 +1612,6 @@ export declare class Tools<TElement = HTMLElement> {
1729
1612
  * will be generated if return code is not zero. The generated Error has
1730
1613
  * a property "returnCode" which provides corresponding process return
1731
1614
  * code.
1732
- * @param this - Indicates an unbound method.
1733
1615
  * @param resolve - Promise's resolve function.
1734
1616
  * @param reject - Promise's reject function.
1735
1617
  * @param reason - Promise target if process has a zero return code.
@@ -1742,7 +1624,6 @@ export declare class Tools<TElement = HTMLElement> {
1742
1624
  /**
1743
1625
  * Forwards given child process communication channels to corresponding
1744
1626
  * current process communication channels.
1745
- * @param this - Indicates an unbound method.
1746
1627
  * @param childProcess - Child process meta data.
1747
1628
  *
1748
1629
  * @returns Given child process meta data.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clientnode",
3
- "version": "3.0.977",
3
+ "version": "3.0.980",
4
4
  "description": "upgrade to object orientated rock solid plugins",
5
5
  "keywords": [
6
6
  "client",
package/readme.md CHANGED
@@ -18,17 +18,12 @@ Project status
18
18
 
19
19
  [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/build.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/build.yaml)
20
20
  [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/test.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/test.yaml)
21
- [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/test:coverage:report.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/test:coverage:report.yaml)
22
- [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/check:types.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/check:types.yaml)
21
+ [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/test-coverage-report.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/test-coverage-report.yaml)
22
+ [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/check-types.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/check-types.yaml)
23
23
  [![<LABEL>](https://github.com/thaibault/clientnode/actions/workflows/lint.yaml/badge.svg)](https://github.com/thaibault/clientnode/actions/workflows/lint.yaml)
24
24
 
25
25
  [![code coverage](https://coveralls.io/repos/github/thaibault/clientnode/badge.svg)](https://coveralls.io/github/thaibault/clientnode)
26
26
 
27
- <!-- Too unstable yet
28
- [![dependencies](https://img.shields.io/david/thaibault/clientnode.svg)](https://david-dm.org/thaibault/clientnode)
29
- [![development dependencies](https://img.shields.io/david/dev/thaibault/clientnode.svg)](https://david-dm.org/thaibault/clientnode?type=dev)
30
- [![peer dependencies](https://img.shields.io/david/peer/thaibault/clientnode.svg)](https://david-dm.org/thaibault/clientnode?type=peer)
31
- -->
32
27
  [![documentation website](https://img.shields.io/website-up-down-green-red/https/torben.website/clientnode.svg?label=documentation-website)](https://torben.website/clientnode)
33
28
 
34
29
  [![Try out](https://badge.runkitcdn.com/clientnode.svg)](https://npm.runkit.com/clientnode)