@defold-typescript/cli 0.1.0

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.
@@ -0,0 +1,14 @@
1
+ export interface RegistryTargetSource {
2
+ readonly kind: string;
3
+ readonly version: string;
4
+ }
5
+ export interface RegistryTarget {
6
+ readonly id: string;
7
+ readonly default?: boolean;
8
+ readonly coreTypesImport?: string;
9
+ readonly source?: RegistryTargetSource | null;
10
+ readonly [key: string]: unknown;
11
+ }
12
+ export declare function resolveTypesPackageRoot(): string | null;
13
+ export declare function loadApiTargetsRegistry(): RegistryTarget[];
14
+ export declare function findRefDocTarget(version: string): RegistryTarget | undefined;
@@ -0,0 +1,6 @@
1
+ export declare const CURRENT_STABLE_SURFACE_ID = "defold-1.12.4";
2
+ export interface SelectedApiSurface {
3
+ readonly surfaceId: string | null;
4
+ readonly available: boolean;
5
+ }
6
+ export declare function selectApiSurface(resolvedVersion: string): SelectedApiSurface;
package/dist/bin.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};