Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
framer-motion /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
cjs
[ DIR ]
drwxr-xr-x
es
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
debug.d.ts
70
B
-rw-r--r--
dom-mini.d.ts
1.8
KB
-rw-r--r--
dom-mini.js
10.32
KB
-rw-r--r--
dom.d.ts
10.34
KB
-rw-r--r--
dom.js
79.47
KB
-rw-r--r--
framer-motion.dev.js
562.92
KB
-rw-r--r--
framer-motion.js
153.7
KB
-rw-r--r--
m.d.ts
28.02
KB
-rw-r--r--
mini.d.ts
407
B
-rw-r--r--
mini.js
7.15
KB
-rw-r--r--
size-rollup-animate.js
55.38
KB
-rw-r--r--
size-rollup-dom-animation-asse...
5.42
KB
-rw-r--r--
size-rollup-dom-animation-m.js
6.17
KB
-rw-r--r--
size-rollup-dom-animation.js
54.82
KB
-rw-r--r--
size-rollup-dom-max-assets.js
5.74
KB
-rw-r--r--
size-rollup-dom-max.js
97.97
KB
-rw-r--r--
size-rollup-m.js
11.08
KB
-rw-r--r--
size-rollup-motion.js
109.18
KB
-rw-r--r--
size-rollup-scroll.js
13.17
KB
-rw-r--r--
size-rollup-waapi-animate.js
6.7
KB
-rw-r--r--
types.d-BJcRxCew.d.ts
31.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dom.d.ts
import { UnresolvedValueKeyframe, MotionValue, Transition, ElementOrSelector, DOMKeyframesDefinition, AnimationOptions, AnimationPlaybackOptions, AnyResolvedKeyframe, AnimationScope, AnimationPlaybackControlsWithThen, ValueAnimationTransition, AnimationPlaybackControls } from 'motion-dom'; export * from 'motion-dom'; import { Easing, EasingFunction, Point } from 'motion-utils'; export * from 'motion-utils'; type ObjectTarget<O> = { [K in keyof O]?: O[K] | UnresolvedValueKeyframe[]; }; type SequenceTime = number | "<" | `+${number}` | `-${number}` | `${string}`; type SequenceLabel = string; interface SequenceLabelWithTime { name: SequenceLabel; at: SequenceTime; } interface At { at?: SequenceTime; } type MotionValueSegment = [ MotionValue, UnresolvedValueKeyframe | UnresolvedValueKeyframe[] ]; type MotionValueSegmentWithTransition = [ MotionValue, UnresolvedValueKeyframe | UnresolvedValueKeyframe[], Transition & At ]; type DOMSegment = [ElementOrSelector, DOMKeyframesDefinition]; type DOMSegmentWithTransition = [ ElementOrSelector, DOMKeyframesDefinition, AnimationOptions & At ]; type ObjectSegment<O extends {} = {}> = [O, ObjectTarget<O>]; type ObjectSegmentWithTransition<O extends {} = {}> = [ O, ObjectTarget<O>, AnimationOptions & At ]; type Segment = ObjectSegment | ObjectSegmentWithTransition | SequenceLabel | SequenceLabelWithTime | MotionValueSegment | MotionValueSegmentWithTransition | DOMSegment | DOMSegmentWithTransition; type AnimationSequence = Segment[]; interface SequenceOptions extends AnimationPlaybackOptions { delay?: number; duration?: number; defaultTransition?: Transition; } interface AbsoluteKeyframe { value: AnyResolvedKeyframe | null; at: number; easing?: Easing; } type ValueSequence = AbsoluteKeyframe[]; interface SequenceMap { [key: string]: ValueSequence; } type ResolvedAnimationDefinition = { keyframes: { [key: string]: UnresolvedValueKeyframe[]; }; transition: { [key: string]: Transition; }; }; type ResolvedAnimationDefinitions = Map<Element | MotionValue, ResolvedAnimationDefinition>; /** * Creates an animation function that is optionally scoped * to a specific element. */ declare function createScopedAnimate(scope?: AnimationScope): { (sequence: AnimationSequence, options?: SequenceOptions): AnimationPlaybackControlsWithThen; (value: string | MotionValue<string>, keyframes: string | UnresolvedValueKeyframe<string>[], options?: ValueAnimationTransition<string>): AnimationPlaybackControlsWithThen; (value: number | MotionValue<number>, keyframes: number | UnresolvedValueKeyframe<number>[], options?: ValueAnimationTransition<number>): AnimationPlaybackControlsWithThen; <V extends string | number>(value: V | MotionValue<V>, keyframes: V | UnresolvedValueKeyframe<V>[], options?: ValueAnimationTransition<V>): AnimationPlaybackControlsWithThen; (element: ElementOrSelector, keyframes: DOMKeyframesDefinition, options?: AnimationOptions): AnimationPlaybackControlsWithThen; <O extends {}>(object: O | O[], keyframes: ObjectTarget<O>, options?: AnimationOptions): AnimationPlaybackControlsWithThen; }; declare const animate: { (sequence: AnimationSequence, options?: SequenceOptions): AnimationPlaybackControlsWithThen; (value: string | MotionValue<string>, keyframes: string | UnresolvedValueKeyframe<string>[], options?: ValueAnimationTransition<string>): AnimationPlaybackControlsWithThen; (value: number | MotionValue<number>, keyframes: number | UnresolvedValueKeyframe<number>[], options?: ValueAnimationTransition<number>): AnimationPlaybackControlsWithThen; <V extends string | number>(value: V | MotionValue<V>, keyframes: V | UnresolvedValueKeyframe<V>[], options?: ValueAnimationTransition<V>): AnimationPlaybackControlsWithThen; (element: ElementOrSelector, keyframes: DOMKeyframesDefinition, options?: AnimationOptions): AnimationPlaybackControlsWithThen; <O extends {}>(object: O | O[], keyframes: ObjectTarget<O>, options?: AnimationOptions): AnimationPlaybackControlsWithThen; }; declare const animateMini: (elementOrSelector: ElementOrSelector, keyframes: DOMKeyframesDefinition, options?: AnimationOptions) => AnimationPlaybackControlsWithThen; interface ScrollOptions { source?: HTMLElement; container?: Element; target?: Element; axis?: "x" | "y"; offset?: ScrollOffset; } type OnScrollProgress = (progress: number) => void; type OnScrollWithInfo = (progress: number, info: ScrollInfo) => void; type OnScroll = OnScrollProgress | OnScrollWithInfo; interface AxisScrollInfo { current: number; offset: number[]; progress: number; scrollLength: number; velocity: number; targetOffset: number; targetLength: number; containerLength: number; interpolatorOffsets?: number[]; interpolate?: EasingFunction; } interface ScrollInfo { time: number; x: AxisScrollInfo; y: AxisScrollInfo; } type OnScrollInfo = (info: ScrollInfo) => void; type SupportedEdgeUnit = "px" | "vw" | "vh" | "%"; type EdgeUnit = `${number}${SupportedEdgeUnit}`; type NamedEdges = "start" | "end" | "center"; type EdgeString = NamedEdges | EdgeUnit | `${number}`; type Edge = EdgeString | number; type ProgressIntersection = [number, number]; type Intersection = `${Edge} ${Edge}`; type ScrollOffset = Array<Edge | Intersection | ProgressIntersection>; interface ScrollInfoOptions { container?: Element; target?: Element; axis?: "x" | "y"; offset?: ScrollOffset; } declare function scroll(onScroll: OnScroll | AnimationPlaybackControls, { axis, container, ...options }?: ScrollOptions): VoidFunction; declare function scrollInfo(onScroll: OnScrollInfo, { container, ...options }?: ScrollInfoOptions): VoidFunction; type ViewChangeHandler = (entry: IntersectionObserverEntry) => void; type MarginValue = `${number}${"px" | "%"}`; type MarginType = MarginValue | `${MarginValue} ${MarginValue}` | `${MarginValue} ${MarginValue} ${MarginValue}` | `${MarginValue} ${MarginValue} ${MarginValue} ${MarginValue}`; interface InViewOptions { root?: Element | Document; margin?: MarginType; amount?: "some" | "all" | number; } declare function inView(elementOrSelector: ElementOrSelector, onStart: (element: Element, entry: IntersectionObserverEntry) => void | ViewChangeHandler, { root, margin: rootMargin, amount }?: InViewOptions): VoidFunction; interface HTMLElements { a: HTMLAnchorElement; abbr: HTMLElement; address: HTMLElement; area: HTMLAreaElement; article: HTMLElement; aside: HTMLElement; audio: HTMLAudioElement; b: HTMLElement; base: HTMLBaseElement; bdi: HTMLElement; bdo: HTMLElement; big: HTMLElement; blockquote: HTMLQuoteElement; body: HTMLBodyElement; br: HTMLBRElement; button: HTMLButtonElement; canvas: HTMLCanvasElement; caption: HTMLElement; center: HTMLElement; cite: HTMLElement; code: HTMLElement; col: HTMLTableColElement; colgroup: HTMLTableColElement; data: HTMLDataElement; datalist: HTMLDataListElement; dd: HTMLElement; del: HTMLModElement; details: HTMLDetailsElement; dfn: HTMLElement; dialog: HTMLDialogElement; div: HTMLDivElement; dl: HTMLDListElement; dt: HTMLElement; em: HTMLElement; embed: HTMLEmbedElement; fieldset: HTMLFieldSetElement; figcaption: HTMLElement; figure: HTMLElement; footer: HTMLElement; form: HTMLFormElement; h1: HTMLHeadingElement; h2: HTMLHeadingElement; h3: HTMLHeadingElement; h4: HTMLHeadingElement; h5: HTMLHeadingElement; h6: HTMLHeadingElement; head: HTMLHeadElement; header: HTMLElement; hgroup: HTMLElement; hr: HTMLHRElement; html: HTMLHtmlElement; i: HTMLElement; iframe: HTMLIFrameElement; img: HTMLImageElement; input: HTMLInputElement; ins: HTMLModElement; kbd: HTMLElement; keygen: HTMLElement; label: HTMLLabelElement; legend: HTMLLegendElement; li: HTMLLIElement; link: HTMLLinkElement; main: HTMLElement; map: HTMLMapElement; mark: HTMLElement; menu: HTMLElement; menuitem: HTMLElement; meta: HTMLMetaElement; meter: HTMLMeterElement; nav: HTMLElement; noindex: HTMLElement; noscript: HTMLElement; object: HTMLObjectElement; ol: HTMLOListElement; optgroup: HTMLOptGroupElement; option: HTMLOptionElement; output: HTMLOutputElement; p: HTMLParagraphElement; param: HTMLParamElement; picture: HTMLElement; pre: HTMLPreElement; progress: HTMLProgressElement; q: HTMLQuoteElement; rp: HTMLElement; rt: HTMLElement; ruby: HTMLElement; s: HTMLElement; samp: HTMLElement; search: HTMLElement; slot: HTMLSlotElement; script: HTMLScriptElement; section: HTMLElement; select: HTMLSelectElement; small: HTMLElement; source: HTMLSourceElement; span: HTMLSpanElement; strong: HTMLElement; style: HTMLStyleElement; sub: HTMLElement; summary: HTMLElement; sup: HTMLElement; table: HTMLTableElement; template: HTMLTemplateElement; tbody: HTMLTableSectionElement; td: HTMLTableDataCellElement; textarea: HTMLTextAreaElement; tfoot: HTMLTableSectionElement; th: HTMLTableHeaderCellElement; thead: HTMLTableSectionElement; time: HTMLTimeElement; title: HTMLTitleElement; tr: HTMLTableRowElement; track: HTMLTrackElement; u: HTMLElement; ul: HTMLUListElement; var: HTMLElement; video: HTMLVideoElement; wbr: HTMLElement; webview: HTMLWebViewElement; } type DelayedFunction = (overshoot: number) => void; declare function delayInSeconds(callback: DelayedFunction, timeout: number): () => void; declare const distance: (a: number, b: number) => number; declare function distance2D(a: Point, b: Point): number; export { type AbsoluteKeyframe, type AnimationSequence, type At, type DOMSegment, type DOMSegmentWithTransition, type DelayedFunction, type HTMLElements, type MotionValueSegment, type MotionValueSegmentWithTransition, type ObjectSegment, type ObjectSegmentWithTransition, type ObjectTarget, type ResolvedAnimationDefinition, type ResolvedAnimationDefinitions, type Segment, type SequenceLabel, type SequenceLabelWithTime, type SequenceMap, type SequenceOptions, type SequenceTime, type ValueSequence, animate, animateMini, createScopedAnimate, delayInSeconds as delay, distance, distance2D, inView, scroll, scrollInfo };
Close