UNPKG

modern-canvas

Version:

A JavaScript WebGL rendering engine. only the ESM.

11 lines (10 loc) 394 B
import type { PropertyDeclaration } from 'modern-idoc'; import type { Node } from './Node'; import { CoreObject } from '../../core'; export declare class Meta extends CoreObject { parent: Node; [key: string]: any; getPropertyDeclarations(): Map<string, PropertyDeclaration>; getPropertyDeclaration(key: string): PropertyDeclaration | undefined; constructor(parent: Node); }