⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
zrender
/
lib
/
graphic
/
View File Name :
Group.d.ts
import Element, { ElementProps } from '../Element'; import BoundingRect from '../core/BoundingRect'; import { ZRenderType } from '../zrender'; export interface GroupProps extends ElementProps { } declare class Group extends Element<GroupProps> { readonly isGroup = true; private _children; constructor(opts?: GroupProps); childrenRef(): Element<ElementProps>[]; children(): Element<ElementProps>[]; childAt(idx: number): Element; childOfName(name: string): Element; childCount(): number; add(child: Element): Group; addBefore(child: Element, nextSibling: Element): this; replace(oldChild: Element, newChild: Element): this; replaceAt(child: Element, index: number): this; _doAdd(child: Element): void; remove(child: Element): this; removeAll(): this; eachChild<Context>(cb: (this: Context, el: Element, index?: number) => void, context?: Context): this; traverse<T>(cb: (this: T, el: Element) => boolean | void, context?: T): this; addSelfToZr(zr: ZRenderType): void; removeSelfFromZr(zr: ZRenderType): void; getBoundingRect(includeChildren?: Element[]): BoundingRect; } export interface GroupLike extends Element { childrenRef(): Element[]; } export default Group;