@coxwave/tap-kit-types 0.0.44 → 0.0.45
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.
- package/package.json +4 -5
- package/index.ts +0 -39
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coxwave/tap-kit-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.45",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Shared TypeScript types for TapKit SDK packages",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,14 +19,13 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"files": [
|
|
22
|
-
"dist"
|
|
23
|
-
"index.ts"
|
|
22
|
+
"dist"
|
|
24
23
|
],
|
|
25
24
|
"devDependencies": {
|
|
26
25
|
"tsup": "^8.5.0",
|
|
27
|
-
"@coxwave/config-
|
|
26
|
+
"@coxwave/config-typescript": "1.0.0",
|
|
28
27
|
"@coxwave/tap-messages": "0.0.1",
|
|
29
|
-
"@coxwave/config-
|
|
28
|
+
"@coxwave/config-eslint": "1.0.0"
|
|
30
29
|
},
|
|
31
30
|
"scripts": {
|
|
32
31
|
"build": "tsup",
|
package/index.ts
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @coxwave/tap-kit-types
|
|
3
|
-
* Shared TypeScript types for TapKit SDK packages
|
|
4
|
-
*
|
|
5
|
-
* This package serves as the single source of truth for all TapKit types,
|
|
6
|
-
* used by both @coxwave/tap-sdk (npm wrapper) and @coxwave/tap-kit-core (CDN implementation).
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
// Re-exports from tap-messages
|
|
10
|
-
export type { AlarmMessageInstanceType, AlarmType } from "@coxwave/tap-messages";
|
|
11
|
-
|
|
12
|
-
// Configuration types
|
|
13
|
-
export type { TapKitConfig, TapKitRuntimeConfig, TapKitConfigOptions, TapKitInitParams, Course } from "./src/config.js";
|
|
14
|
-
|
|
15
|
-
// Styling types
|
|
16
|
-
export type { ContainerStyle, PositionType, CustomStyles } from "./src/styles.js";
|
|
17
|
-
|
|
18
|
-
// Event types
|
|
19
|
-
export type { SeekTimelineParamsType, ShortcutKeyPropertiesType, ContainerVisibility } from "./src/events.js";
|
|
20
|
-
|
|
21
|
-
// Instance types
|
|
22
|
-
export type { TapKitInstance, TapKitConstructor, TAPKIT_CONFIG_SYMBOL } from "./src/instance.js";
|
|
23
|
-
|
|
24
|
-
// Error types and classes
|
|
25
|
-
export type { TapErrorOptions } from "./src/errors.js";
|
|
26
|
-
|
|
27
|
-
export {
|
|
28
|
-
TAP_ERROR_MARKER,
|
|
29
|
-
TapKitError,
|
|
30
|
-
TapKitInitializationError,
|
|
31
|
-
TapKitMessageError,
|
|
32
|
-
TapKitConfigurationError,
|
|
33
|
-
TapKitLoaderError,
|
|
34
|
-
TapKitIframeError,
|
|
35
|
-
InitializationError,
|
|
36
|
-
} from "./src/errors.js";
|
|
37
|
-
|
|
38
|
-
// Global type definitions (Window, requestIdleCallback)
|
|
39
|
-
import "./src/global.d.js";
|