@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
10 lines (9 loc) • 323 B
TypeScript
import { BaseParamType } from '../../../params/_Base';
export declare class MissingReference {
private param;
readonly path: string;
constructor(param: BaseParamType, path: string);
absolutePath(): string | null | undefined;
matchesPath(path: string): boolean;
resolveMissingDependencies(): void;
}