@pilotdev/pilot-web-3d 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/index.d.ts +2 -2
  3. package/package.json +2 -3
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # Installation
2
- > `npm install --save @team-pilot/pilot-web-3d`
2
+ > `npm install --save-dev @pilotdev/pilot-web-3d`
3
3
 
4
4
  # Summary
5
5
  This package contains type definitions for Ascon pilot-web-3d.js library (https://pilotcloud.ascon.net/).
6
6
 
7
7
  ### Additional Details
8
- * Last updated: Thu, 25 Aug 2022 14:10:25 GMT
8
+ * Last updated: Thu, 25 Aug 2022 17:10:25 GMT
9
9
  * Global values: `PilotWeb3d`
package/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export namespace PilotWeb3D {
2
2
 
3
3
  export type InitializeSuccessCallback = () => void;
4
- export declare function Initializer(options: any, callback: InitializeSuccessCallback): void;
5
- export declare function shutdown(): void;
4
+ export function Initializer(options: any, callback: InitializeSuccessCallback): void;
5
+ export function shutdown(): void;
6
6
  export type ErrorCallback = (message: string) => void;
7
7
  export type SuccessCallback = (modelId: any) => void;
8
8
  export enum DocumentType {
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@pilotdev/pilot-web-3d",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "TypeScript definitions for ASCON pilotweb3d.js library",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
7
7
  "scripts": {},
8
- "author": "",
9
- "license": "ISC",
8
+ "license": "MIT",
10
9
  "typeScriptVersion": "4.4.3",
11
10
  "devDependencies": {
12
11
  "@types/three": "0.135.0"