Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.22.62
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
rx /
ts /
Delete
Unzip
Name
Size
Permission
Date
Action
core
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
es6-promise.es6.d.ts
3.72
KB
-rw-rw-r--
2022-08-30 11:49
iterable.es6.d.ts
5.23
KB
-rw-rw-r--
2022-08-30 11:49
rx.aggregates.d.ts
15.92
KB
-rw-rw-r--
2022-08-30 11:49
rx.aggregates.es6.d.ts
17.43
KB
-rw-rw-r--
2022-08-30 11:49
rx.all.d.ts
336.54
KB
-rw-rw-r--
2022-08-30 11:49
rx.all.es6.d.ts
337.88
KB
-rw-rw-r--
2022-08-30 11:49
rx.async.d.ts
25.97
KB
-rw-rw-r--
2022-08-30 11:49
rx.async.es6.d.ts
25.97
KB
-rw-rw-r--
2022-08-30 11:49
rx.backpressure.d.ts
3.39
KB
-rw-rw-r--
2022-08-30 11:49
rx.backpressure.es6.d.ts
3.39
KB
-rw-rw-r--
2022-08-30 11:49
rx.binding.d.ts
17.75
KB
-rw-rw-r--
2022-08-30 11:49
rx.binding.es6.d.ts
17.75
KB
-rw-rw-r--
2022-08-30 11:49
rx.coincidence.d.ts
15.32
KB
-rw-rw-r--
2022-08-30 11:49
rx.coincidence.es6.d.ts
15.32
KB
-rw-rw-r--
2022-08-30 11:49
rx.core.binding.d.ts
17.28
KB
-rw-rw-r--
2022-08-30 11:49
rx.core.binding.es6.d.ts
17.28
KB
-rw-rw-r--
2022-08-30 11:49
rx.core.d.ts
23.42
KB
-rw-rw-r--
2022-08-30 11:49
rx.core.es6.d.ts
23.25
KB
-rw-rw-r--
2022-08-30 11:49
rx.core.testing.d.ts
12.09
KB
-rw-rw-r--
2022-08-30 11:49
rx.core.testing.es6.d.ts
12.09
KB
-rw-rw-r--
2022-08-30 11:49
rx.d.ts
167.13
KB
-rw-rw-r--
2022-08-30 11:49
rx.es6.d.ts
166.96
KB
-rw-rw-r--
2022-08-30 11:49
rx.experimental.d.ts
34.35
KB
-rw-rw-r--
2022-08-30 11:49
rx.experimental.es6.d.ts
34.35
KB
-rw-rw-r--
2022-08-30 11:49
rx.joinpatterns.d.ts
9.35
KB
-rw-rw-r--
2022-08-30 11:49
rx.joinpatterns.es6.d.ts
9.35
KB
-rw-rw-r--
2022-08-30 11:49
rx.lite.d.ts
209.5
KB
-rw-rw-r--
2022-08-30 11:49
rx.lite.es6.d.ts
209.33
KB
-rw-rw-r--
2022-08-30 11:49
rx.lite.extras.d.ts
11.89
KB
-rw-rw-r--
2022-08-30 11:49
rx.lite.extras.es6.d.ts
11.89
KB
-rw-rw-r--
2022-08-30 11:49
rx.sorting.d.ts
824
B
-rw-rw-r--
2022-08-30 11:49
rx.sorting.es6.d.ts
824
B
-rw-rw-r--
2022-08-30 11:49
rx.testing.d.ts
10.03
KB
-rw-rw-r--
2022-08-30 11:49
rx.testing.es6.d.ts
10.03
KB
-rw-rw-r--
2022-08-30 11:49
rx.time.d.ts
34.2
KB
-rw-rw-r--
2022-08-30 11:49
rx.time.es6.d.ts
34.2
KB
-rw-rw-r--
2022-08-30 11:49
rx.virtualtime.d.ts
2.66
KB
-rw-rw-r--
2022-08-30 11:49
rx.virtualtime.es6.d.ts
2.66
KB
-rw-rw-r--
2022-08-30 11:49
tsconfig.json
9.91
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
declare module Rx { export class Plan<T> { } export interface Pattern2<T1, T2> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T3>(other: Observable<T3>): Pattern3<T1, T2, T3>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2) => TR): Plan<TR>; } interface Pattern3<T1, T2, T3> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T4>(other: Observable<T4>): Pattern4<T1, T2, T3, T4>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3) => TR): Plan<TR>; } interface Pattern4<T1, T2, T3, T4> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T5>(other: Observable<T5>): Pattern5<T1, T2, T3, T4, T5>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3, item4: T4) => TR): Plan<TR>; } interface Pattern5<T1, T2, T3, T4, T5> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T6>(other: Observable<T6>): Pattern6<T1, T2, T3, T4, T5, T6>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3, item4: T4, item5: T5) => TR): Plan<TR>; } interface Pattern6<T1, T2, T3, T4, T5, T6> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T7>(other: Observable<T7>): Pattern7<T1, T2, T3, T4, T5, T6, T7>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6) => TR): Plan<TR>; } interface Pattern7<T1, T2, T3, T4, T5, T6, T7> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T8>(other: Observable<T8>): Pattern8<T1, T2, T3, T4, T5, T6, T7, T8>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6, item7: T7) => TR): Plan<TR>; } interface Pattern8<T1, T2, T3, T4, T5, T6, T7, T8> { /** * Creates a pattern that matches the current plan matches and when the specified observable sequences has an available value. * @param other Observable sequence to match in addition to the current pattern. * @return {Pattern} Pattern object that matches when all observable sequences in the pattern have an available value. */ and<T9>(other: Observable<T9>): Pattern9<T1, T2, T3, T4, T5, T6, T7, T8, T9>; /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6, item7: T7, item8: T8) => TR): Plan<TR>; } interface Pattern9<T1, T2, T3, T4, T5, T6, T7, T8, T9> { /** * Matches when all observable sequences in the pattern (specified using a chain of and operators) have an available value and projects the values. * @param {Function} selector Selector that will be invoked with available values from the source sequences, in the same order of the sequences in the pattern. * @return {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6, item7: T7, item8: T8, item9: T9) => TR): Plan<TR>; } export interface Observable<T> { /** * Creates a pattern that matches when both observable sequences have an available value. * * @param right Observable sequence to match with the current sequence. * @return {Pattern} Pattern object that matches when both observable sequences have an available value. */ and<T2>(right: Observable<T2>): Pattern2<T, T2>; } export interface Observable<T> { /** * Matches when the observable sequence has an available value and projects the value. * * @param {Function} selector Selector that will be invoked for values in the source sequence. * @returns {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ thenDo<TR>(selector: (item1: T) => TR): Plan<TR>; } export interface ObservableStatic { /** * Joins together the results from several patterns. * * @param plans A series of plans (specified as an Array of as a series of arguments) created by use of the Then operator on patterns. * @returns {Observable} Observable sequence with the results form matching several patterns. */ when<TR>(plan: Plan<TR>): Observable<TR>; } } declare module "rx.joinpatterns" { export = Rx; }