This commit is contained in:
mige 2025-09-17 10:18:18 +04:00
parent 4c9dfd9460
commit f98819d36f
3 changed files with 18 additions and 10 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@openglobus/og",
"version": "0.27.10",
"version": "0.27.11",
"description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
"main": "lib/og.es.js",
"types": "lib/index.d.ts",

View File

@ -51,6 +51,7 @@ import {LonLat} from './LonLat';
import {RenderNode} from './scene/RenderNode';
import {Planet} from './scene/Planet';
import {Popup} from './Popup';
import {Loader, type IResponse} from './utils/Loader';
import {
EarthQuadTreeStrategy,
@ -86,9 +87,9 @@ import {
} from './terrain/index';
import {MoveAxisEntity} from "./control/geoObjectEditor/MoveAxisEntity";
import { Gltf } from './utils/gltf/gltfParser';
import { Easing } from './utils/easing';
import type { EasingFunction } from './utils/easing';
import {Gltf} from './utils/gltf/gltfParser';
import {Easing} from './utils/easing';
import type {EasingFunction} from './utils/easing';
export {
bv,
@ -149,4 +150,6 @@ export {
Object3d,
Gltf,
MoveAxisEntity,
Loader,
IResponse
};

View File

@ -1,13 +1,18 @@
import { Framebuffer } from "./Framebuffer";
import { Handler } from "./Handler";
import { Multisample } from "./Multisample";
import { Program } from "./Program";
import { types } from "./types";
import {Framebuffer} from "./Framebuffer";
import {Handler} from "./Handler";
import type {WebGLContextExt, WebGLBufferExt, WebGLTextureExt, ImageSource} from "./Handler";
import {Multisample} from "./Multisample";
import {Program} from "./Program";
import {types} from "./types";
export {
Framebuffer,
Handler,
Multisample,
types,
Program
Program,
WebGLContextExt,
WebGLBufferExt,
WebGLTextureExt,
ImageSource
};