UNPKG

modern-canvas

Version:

A JavaScript WebGL rendering engine. only the ESM.

12 lines (11 loc) 313 B
import type { InternalMode, Node } from './Node'; export declare class Children<T extends Node = Node> { front: T[]; default: T[]; back: T[]; get internal(): T[]; constructor(...items: T[]); set(items: T[]): this; getInternal(includeInternal?: InternalMode): T[]; toJSON(): T[]; }