@dagger.io/dagger 0.13.7 → 0.14.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.
- package/dist/api/client.gen.d.ts +176 -186
- package/dist/api/client.gen.d.ts.map +1 -1
- package/dist/api/client.gen.js +530 -560
- package/dist/provisioning/default.d.ts +1 -1
- package/dist/provisioning/default.js +1 -1
- package/package.json +1 -1
package/dist/api/client.gen.d.ts
CHANGED
|
@@ -521,30 +521,6 @@ export type CurrentModuleWorkdirOpts = {
|
|
|
521
521
|
export type CurrentModuleID = string & {
|
|
522
522
|
__CurrentModuleID: never;
|
|
523
523
|
};
|
|
524
|
-
/**
|
|
525
|
-
* The `DaggerEngineCacheEntryID` scalar type represents an identifier for an object of type DaggerEngineCacheEntry.
|
|
526
|
-
*/
|
|
527
|
-
export type DaggerEngineCacheEntryID = string & {
|
|
528
|
-
__DaggerEngineCacheEntryID: never;
|
|
529
|
-
};
|
|
530
|
-
/**
|
|
531
|
-
* The `DaggerEngineCacheEntrySetID` scalar type represents an identifier for an object of type DaggerEngineCacheEntrySet.
|
|
532
|
-
*/
|
|
533
|
-
export type DaggerEngineCacheEntrySetID = string & {
|
|
534
|
-
__DaggerEngineCacheEntrySetID: never;
|
|
535
|
-
};
|
|
536
|
-
/**
|
|
537
|
-
* The `DaggerEngineCacheID` scalar type represents an identifier for an object of type DaggerEngineCache.
|
|
538
|
-
*/
|
|
539
|
-
export type DaggerEngineCacheID = string & {
|
|
540
|
-
__DaggerEngineCacheID: never;
|
|
541
|
-
};
|
|
542
|
-
/**
|
|
543
|
-
* The `DaggerEngineID` scalar type represents an identifier for an object of type DaggerEngine.
|
|
544
|
-
*/
|
|
545
|
-
export type DaggerEngineID = string & {
|
|
546
|
-
__DaggerEngineID: never;
|
|
547
|
-
};
|
|
548
524
|
export type DirectoryAsModuleOpts = {
|
|
549
525
|
/**
|
|
550
526
|
* An optional subpath of the directory which contains the module's configuration file.
|
|
@@ -655,6 +631,30 @@ export type DirectoryWithNewFileOpts = {
|
|
|
655
631
|
export type DirectoryID = string & {
|
|
656
632
|
__DirectoryID: never;
|
|
657
633
|
};
|
|
634
|
+
/**
|
|
635
|
+
* The `EngineCacheEntryID` scalar type represents an identifier for an object of type EngineCacheEntry.
|
|
636
|
+
*/
|
|
637
|
+
export type EngineCacheEntryID = string & {
|
|
638
|
+
__EngineCacheEntryID: never;
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* The `EngineCacheEntrySetID` scalar type represents an identifier for an object of type EngineCacheEntrySet.
|
|
642
|
+
*/
|
|
643
|
+
export type EngineCacheEntrySetID = string & {
|
|
644
|
+
__EngineCacheEntrySetID: never;
|
|
645
|
+
};
|
|
646
|
+
/**
|
|
647
|
+
* The `EngineCacheID` scalar type represents an identifier for an object of type EngineCache.
|
|
648
|
+
*/
|
|
649
|
+
export type EngineCacheID = string & {
|
|
650
|
+
__EngineCacheID: never;
|
|
651
|
+
};
|
|
652
|
+
/**
|
|
653
|
+
* The `EngineID` scalar type represents an identifier for an object of type Engine.
|
|
654
|
+
*/
|
|
655
|
+
export type EngineID = string & {
|
|
656
|
+
__EngineID: never;
|
|
657
|
+
};
|
|
658
658
|
/**
|
|
659
659
|
* The `EnumTypeDefID` scalar type represents an identifier for an object of type EnumTypeDef.
|
|
660
660
|
*/
|
|
@@ -1601,10 +1601,6 @@ export declare class Container extends BaseClient {
|
|
|
1601
1601
|
* @param opts.expand Replace "${VAR}" or "$VAR" in the value of path according to the current environment variables defined in the container (e.g. "/$VAR/foo.txt").
|
|
1602
1602
|
*/
|
|
1603
1603
|
withFiles: (path: string, sources: File[], opts?: ContainerWithFilesOpts) => Container;
|
|
1604
|
-
/**
|
|
1605
|
-
* Indicate that subsequent operations should be featured more prominently in the UI.
|
|
1606
|
-
*/
|
|
1607
|
-
withFocus: () => Container;
|
|
1608
1604
|
/**
|
|
1609
1605
|
* Retrieves this container plus the given label.
|
|
1610
1606
|
* @param name The name of the label (e.g., "org.opencontainers.artifact.created").
|
|
@@ -1784,12 +1780,6 @@ export declare class Container extends BaseClient {
|
|
|
1784
1780
|
* @param opts.expand Replace "${VAR}" or "$VAR" in the value of paths according to the current environment variables defined in the container (e.g. "/$VAR/foo.txt").
|
|
1785
1781
|
*/
|
|
1786
1782
|
withoutFiles: (paths: string[], opts?: ContainerWithoutFilesOpts) => Container;
|
|
1787
|
-
/**
|
|
1788
|
-
* Indicate that subsequent operations should not be featured more prominently in the UI.
|
|
1789
|
-
*
|
|
1790
|
-
* This is the initial state of all containers.
|
|
1791
|
-
*/
|
|
1792
|
-
withoutFocus: () => Container;
|
|
1793
1783
|
/**
|
|
1794
1784
|
* Retrieves this container minus the given environment label.
|
|
1795
1785
|
* @param name The name of the label to remove (e.g., "org.opencontainers.artifact.created").
|
|
@@ -1880,144 +1870,6 @@ export declare class CurrentModule extends BaseClient {
|
|
|
1880
1870
|
*/
|
|
1881
1871
|
workdirFile: (path: string) => File;
|
|
1882
1872
|
}
|
|
1883
|
-
/**
|
|
1884
|
-
* The Dagger engine configuration and state
|
|
1885
|
-
*/
|
|
1886
|
-
export declare class DaggerEngine extends BaseClient {
|
|
1887
|
-
private readonly _id?;
|
|
1888
|
-
/**
|
|
1889
|
-
* Constructor is used for internal usage only, do not create object from it.
|
|
1890
|
-
*/
|
|
1891
|
-
constructor(parent?: {
|
|
1892
|
-
queryTree?: QueryTree[];
|
|
1893
|
-
ctx: Context;
|
|
1894
|
-
}, _id?: DaggerEngineID);
|
|
1895
|
-
/**
|
|
1896
|
-
* A unique identifier for this DaggerEngine.
|
|
1897
|
-
*/
|
|
1898
|
-
id: () => Promise<DaggerEngineID>;
|
|
1899
|
-
/**
|
|
1900
|
-
* The local (on-disk) cache for the Dagger engine
|
|
1901
|
-
*/
|
|
1902
|
-
localCache: () => DaggerEngineCache;
|
|
1903
|
-
}
|
|
1904
|
-
/**
|
|
1905
|
-
* A cache storage for the Dagger engine
|
|
1906
|
-
*/
|
|
1907
|
-
export declare class DaggerEngineCache extends BaseClient {
|
|
1908
|
-
private readonly _id?;
|
|
1909
|
-
private readonly _keepBytes?;
|
|
1910
|
-
private readonly _maxUsedSpace?;
|
|
1911
|
-
private readonly _minFreeSpace?;
|
|
1912
|
-
private readonly _prune?;
|
|
1913
|
-
private readonly _reservedSpace?;
|
|
1914
|
-
/**
|
|
1915
|
-
* Constructor is used for internal usage only, do not create object from it.
|
|
1916
|
-
*/
|
|
1917
|
-
constructor(parent?: {
|
|
1918
|
-
queryTree?: QueryTree[];
|
|
1919
|
-
ctx: Context;
|
|
1920
|
-
}, _id?: DaggerEngineCacheID, _keepBytes?: number, _maxUsedSpace?: number, _minFreeSpace?: number, _prune?: Void, _reservedSpace?: number);
|
|
1921
|
-
/**
|
|
1922
|
-
* A unique identifier for this DaggerEngineCache.
|
|
1923
|
-
*/
|
|
1924
|
-
id: () => Promise<DaggerEngineCacheID>;
|
|
1925
|
-
/**
|
|
1926
|
-
* The current set of entries in the cache
|
|
1927
|
-
*/
|
|
1928
|
-
entrySet: () => DaggerEngineCacheEntrySet;
|
|
1929
|
-
/**
|
|
1930
|
-
* The maximum bytes to keep in the cache without pruning, after which automatic pruning may kick in.
|
|
1931
|
-
* @deprecated Use minFreeSpace instead.
|
|
1932
|
-
*/
|
|
1933
|
-
keepBytes: () => Promise<number>;
|
|
1934
|
-
/**
|
|
1935
|
-
* The maximum bytes to keep in the cache without pruning.
|
|
1936
|
-
*/
|
|
1937
|
-
maxUsedSpace: () => Promise<number>;
|
|
1938
|
-
/**
|
|
1939
|
-
* The target amount of free disk space the garbage collector will attempt to leave.
|
|
1940
|
-
*/
|
|
1941
|
-
minFreeSpace: () => Promise<number>;
|
|
1942
|
-
/**
|
|
1943
|
-
* Prune the cache of releaseable entries
|
|
1944
|
-
*/
|
|
1945
|
-
prune: () => Promise<void>;
|
|
1946
|
-
reservedSpace: () => Promise<number>;
|
|
1947
|
-
}
|
|
1948
|
-
/**
|
|
1949
|
-
* An individual cache entry in a cache entry set
|
|
1950
|
-
*/
|
|
1951
|
-
export declare class DaggerEngineCacheEntry extends BaseClient {
|
|
1952
|
-
private readonly _id?;
|
|
1953
|
-
private readonly _activelyUsed?;
|
|
1954
|
-
private readonly _createdTimeUnixNano?;
|
|
1955
|
-
private readonly _description?;
|
|
1956
|
-
private readonly _diskSpaceBytes?;
|
|
1957
|
-
private readonly _mostRecentUseTimeUnixNano?;
|
|
1958
|
-
/**
|
|
1959
|
-
* Constructor is used for internal usage only, do not create object from it.
|
|
1960
|
-
*/
|
|
1961
|
-
constructor(parent?: {
|
|
1962
|
-
queryTree?: QueryTree[];
|
|
1963
|
-
ctx: Context;
|
|
1964
|
-
}, _id?: DaggerEngineCacheEntryID, _activelyUsed?: boolean, _createdTimeUnixNano?: number, _description?: string, _diskSpaceBytes?: number, _mostRecentUseTimeUnixNano?: number);
|
|
1965
|
-
/**
|
|
1966
|
-
* A unique identifier for this DaggerEngineCacheEntry.
|
|
1967
|
-
*/
|
|
1968
|
-
id: () => Promise<DaggerEngineCacheEntryID>;
|
|
1969
|
-
/**
|
|
1970
|
-
* Whether the cache entry is actively being used.
|
|
1971
|
-
*/
|
|
1972
|
-
activelyUsed: () => Promise<boolean>;
|
|
1973
|
-
/**
|
|
1974
|
-
* The time the cache entry was created, in Unix nanoseconds.
|
|
1975
|
-
*/
|
|
1976
|
-
createdTimeUnixNano: () => Promise<number>;
|
|
1977
|
-
/**
|
|
1978
|
-
* The description of the cache entry.
|
|
1979
|
-
*/
|
|
1980
|
-
description: () => Promise<string>;
|
|
1981
|
-
/**
|
|
1982
|
-
* The disk space used by the cache entry.
|
|
1983
|
-
*/
|
|
1984
|
-
diskSpaceBytes: () => Promise<number>;
|
|
1985
|
-
/**
|
|
1986
|
-
* The most recent time the cache entry was used, in Unix nanoseconds.
|
|
1987
|
-
*/
|
|
1988
|
-
mostRecentUseTimeUnixNano: () => Promise<number>;
|
|
1989
|
-
}
|
|
1990
|
-
/**
|
|
1991
|
-
* A set of cache entries returned by a query to a cache
|
|
1992
|
-
*/
|
|
1993
|
-
export declare class DaggerEngineCacheEntrySet extends BaseClient {
|
|
1994
|
-
private readonly _id?;
|
|
1995
|
-
private readonly _diskSpaceBytes?;
|
|
1996
|
-
private readonly _entryCount?;
|
|
1997
|
-
/**
|
|
1998
|
-
* Constructor is used for internal usage only, do not create object from it.
|
|
1999
|
-
*/
|
|
2000
|
-
constructor(parent?: {
|
|
2001
|
-
queryTree?: QueryTree[];
|
|
2002
|
-
ctx: Context;
|
|
2003
|
-
}, _id?: DaggerEngineCacheEntrySetID, _diskSpaceBytes?: number, _entryCount?: number);
|
|
2004
|
-
/**
|
|
2005
|
-
* A unique identifier for this DaggerEngineCacheEntrySet.
|
|
2006
|
-
*/
|
|
2007
|
-
id: () => Promise<DaggerEngineCacheEntrySetID>;
|
|
2008
|
-
/**
|
|
2009
|
-
* The total disk space used by the cache entries in this set.
|
|
2010
|
-
*/
|
|
2011
|
-
diskSpaceBytes: () => Promise<number>;
|
|
2012
|
-
/**
|
|
2013
|
-
* The list of individual cache entries in the set
|
|
2014
|
-
*/
|
|
2015
|
-
entries: () => Promise<DaggerEngineCacheEntry[]>;
|
|
2016
|
-
/**
|
|
2017
|
-
* The number of cache entries in this set.
|
|
2018
|
-
*/
|
|
2019
|
-
entryCount: () => Promise<number>;
|
|
2020
|
-
}
|
|
2021
1873
|
/**
|
|
2022
1874
|
* A directory.
|
|
2023
1875
|
*/
|
|
@@ -2171,6 +2023,144 @@ export declare class Directory extends BaseClient {
|
|
|
2171
2023
|
*/
|
|
2172
2024
|
with: (arg: (param: Directory) => Directory) => Directory;
|
|
2173
2025
|
}
|
|
2026
|
+
/**
|
|
2027
|
+
* The Dagger engine configuration and state
|
|
2028
|
+
*/
|
|
2029
|
+
export declare class Engine extends BaseClient {
|
|
2030
|
+
private readonly _id?;
|
|
2031
|
+
/**
|
|
2032
|
+
* Constructor is used for internal usage only, do not create object from it.
|
|
2033
|
+
*/
|
|
2034
|
+
constructor(parent?: {
|
|
2035
|
+
queryTree?: QueryTree[];
|
|
2036
|
+
ctx: Context;
|
|
2037
|
+
}, _id?: EngineID);
|
|
2038
|
+
/**
|
|
2039
|
+
* A unique identifier for this Engine.
|
|
2040
|
+
*/
|
|
2041
|
+
id: () => Promise<EngineID>;
|
|
2042
|
+
/**
|
|
2043
|
+
* The local (on-disk) cache for the Dagger engine
|
|
2044
|
+
*/
|
|
2045
|
+
localCache: () => EngineCache;
|
|
2046
|
+
}
|
|
2047
|
+
/**
|
|
2048
|
+
* A cache storage for the Dagger engine
|
|
2049
|
+
*/
|
|
2050
|
+
export declare class EngineCache extends BaseClient {
|
|
2051
|
+
private readonly _id?;
|
|
2052
|
+
private readonly _keepBytes?;
|
|
2053
|
+
private readonly _maxUsedSpace?;
|
|
2054
|
+
private readonly _minFreeSpace?;
|
|
2055
|
+
private readonly _prune?;
|
|
2056
|
+
private readonly _reservedSpace?;
|
|
2057
|
+
/**
|
|
2058
|
+
* Constructor is used for internal usage only, do not create object from it.
|
|
2059
|
+
*/
|
|
2060
|
+
constructor(parent?: {
|
|
2061
|
+
queryTree?: QueryTree[];
|
|
2062
|
+
ctx: Context;
|
|
2063
|
+
}, _id?: EngineCacheID, _keepBytes?: number, _maxUsedSpace?: number, _minFreeSpace?: number, _prune?: Void, _reservedSpace?: number);
|
|
2064
|
+
/**
|
|
2065
|
+
* A unique identifier for this EngineCache.
|
|
2066
|
+
*/
|
|
2067
|
+
id: () => Promise<EngineCacheID>;
|
|
2068
|
+
/**
|
|
2069
|
+
* The current set of entries in the cache
|
|
2070
|
+
*/
|
|
2071
|
+
entrySet: () => EngineCacheEntrySet;
|
|
2072
|
+
/**
|
|
2073
|
+
* The maximum bytes to keep in the cache without pruning, after which automatic pruning may kick in.
|
|
2074
|
+
* @deprecated Use minFreeSpace instead.
|
|
2075
|
+
*/
|
|
2076
|
+
keepBytes: () => Promise<number>;
|
|
2077
|
+
/**
|
|
2078
|
+
* The maximum bytes to keep in the cache without pruning.
|
|
2079
|
+
*/
|
|
2080
|
+
maxUsedSpace: () => Promise<number>;
|
|
2081
|
+
/**
|
|
2082
|
+
* The target amount of free disk space the garbage collector will attempt to leave.
|
|
2083
|
+
*/
|
|
2084
|
+
minFreeSpace: () => Promise<number>;
|
|
2085
|
+
/**
|
|
2086
|
+
* Prune the cache of releaseable entries
|
|
2087
|
+
*/
|
|
2088
|
+
prune: () => Promise<void>;
|
|
2089
|
+
reservedSpace: () => Promise<number>;
|
|
2090
|
+
}
|
|
2091
|
+
/**
|
|
2092
|
+
* An individual cache entry in a cache entry set
|
|
2093
|
+
*/
|
|
2094
|
+
export declare class EngineCacheEntry extends BaseClient {
|
|
2095
|
+
private readonly _id?;
|
|
2096
|
+
private readonly _activelyUsed?;
|
|
2097
|
+
private readonly _createdTimeUnixNano?;
|
|
2098
|
+
private readonly _description?;
|
|
2099
|
+
private readonly _diskSpaceBytes?;
|
|
2100
|
+
private readonly _mostRecentUseTimeUnixNano?;
|
|
2101
|
+
/**
|
|
2102
|
+
* Constructor is used for internal usage only, do not create object from it.
|
|
2103
|
+
*/
|
|
2104
|
+
constructor(parent?: {
|
|
2105
|
+
queryTree?: QueryTree[];
|
|
2106
|
+
ctx: Context;
|
|
2107
|
+
}, _id?: EngineCacheEntryID, _activelyUsed?: boolean, _createdTimeUnixNano?: number, _description?: string, _diskSpaceBytes?: number, _mostRecentUseTimeUnixNano?: number);
|
|
2108
|
+
/**
|
|
2109
|
+
* A unique identifier for this EngineCacheEntry.
|
|
2110
|
+
*/
|
|
2111
|
+
id: () => Promise<EngineCacheEntryID>;
|
|
2112
|
+
/**
|
|
2113
|
+
* Whether the cache entry is actively being used.
|
|
2114
|
+
*/
|
|
2115
|
+
activelyUsed: () => Promise<boolean>;
|
|
2116
|
+
/**
|
|
2117
|
+
* The time the cache entry was created, in Unix nanoseconds.
|
|
2118
|
+
*/
|
|
2119
|
+
createdTimeUnixNano: () => Promise<number>;
|
|
2120
|
+
/**
|
|
2121
|
+
* The description of the cache entry.
|
|
2122
|
+
*/
|
|
2123
|
+
description: () => Promise<string>;
|
|
2124
|
+
/**
|
|
2125
|
+
* The disk space used by the cache entry.
|
|
2126
|
+
*/
|
|
2127
|
+
diskSpaceBytes: () => Promise<number>;
|
|
2128
|
+
/**
|
|
2129
|
+
* The most recent time the cache entry was used, in Unix nanoseconds.
|
|
2130
|
+
*/
|
|
2131
|
+
mostRecentUseTimeUnixNano: () => Promise<number>;
|
|
2132
|
+
}
|
|
2133
|
+
/**
|
|
2134
|
+
* A set of cache entries returned by a query to a cache
|
|
2135
|
+
*/
|
|
2136
|
+
export declare class EngineCacheEntrySet extends BaseClient {
|
|
2137
|
+
private readonly _id?;
|
|
2138
|
+
private readonly _diskSpaceBytes?;
|
|
2139
|
+
private readonly _entryCount?;
|
|
2140
|
+
/**
|
|
2141
|
+
* Constructor is used for internal usage only, do not create object from it.
|
|
2142
|
+
*/
|
|
2143
|
+
constructor(parent?: {
|
|
2144
|
+
queryTree?: QueryTree[];
|
|
2145
|
+
ctx: Context;
|
|
2146
|
+
}, _id?: EngineCacheEntrySetID, _diskSpaceBytes?: number, _entryCount?: number);
|
|
2147
|
+
/**
|
|
2148
|
+
* A unique identifier for this EngineCacheEntrySet.
|
|
2149
|
+
*/
|
|
2150
|
+
id: () => Promise<EngineCacheEntrySetID>;
|
|
2151
|
+
/**
|
|
2152
|
+
* The total disk space used by the cache entries in this set.
|
|
2153
|
+
*/
|
|
2154
|
+
diskSpaceBytes: () => Promise<number>;
|
|
2155
|
+
/**
|
|
2156
|
+
* The list of individual cache entries in the set
|
|
2157
|
+
*/
|
|
2158
|
+
entries: () => Promise<EngineCacheEntry[]>;
|
|
2159
|
+
/**
|
|
2160
|
+
* The number of cache entries in this set.
|
|
2161
|
+
*/
|
|
2162
|
+
entryCount: () => Promise<number>;
|
|
2163
|
+
}
|
|
2174
2164
|
/**
|
|
2175
2165
|
* A definition of a custom enum defined in a Module.
|
|
2176
2166
|
*/
|
|
@@ -3420,10 +3410,6 @@ export declare class Client extends BaseClient {
|
|
|
3420
3410
|
* The TypeDef representations of the objects currently being served in the session.
|
|
3421
3411
|
*/
|
|
3422
3412
|
currentTypeDefs: () => Promise<TypeDef[]>;
|
|
3423
|
-
/**
|
|
3424
|
-
* The Dagger engine container configuration and state
|
|
3425
|
-
*/
|
|
3426
|
-
daggerEngine: () => DaggerEngine;
|
|
3427
3413
|
/**
|
|
3428
3414
|
* The default platform of the engine.
|
|
3429
3415
|
*/
|
|
@@ -3432,6 +3418,10 @@ export declare class Client extends BaseClient {
|
|
|
3432
3418
|
* Creates an empty directory.
|
|
3433
3419
|
*/
|
|
3434
3420
|
directory: () => Directory;
|
|
3421
|
+
/**
|
|
3422
|
+
* The Dagger engine container configuration and state
|
|
3423
|
+
*/
|
|
3424
|
+
engine: () => Engine;
|
|
3435
3425
|
/**
|
|
3436
3426
|
* Creates a function.
|
|
3437
3427
|
* @param name Name of the function, in its original format from the implementation language.
|
|
@@ -3478,25 +3468,25 @@ export declare class Client extends BaseClient {
|
|
|
3478
3468
|
*/
|
|
3479
3469
|
loadCurrentModuleFromID: (id: CurrentModuleID) => CurrentModule;
|
|
3480
3470
|
/**
|
|
3481
|
-
* Load a
|
|
3471
|
+
* Load a Directory from its ID.
|
|
3482
3472
|
*/
|
|
3483
|
-
|
|
3473
|
+
loadDirectoryFromID: (id: DirectoryID) => Directory;
|
|
3484
3474
|
/**
|
|
3485
|
-
* Load a
|
|
3475
|
+
* Load a EngineCacheEntry from its ID.
|
|
3486
3476
|
*/
|
|
3487
|
-
|
|
3477
|
+
loadEngineCacheEntryFromID: (id: EngineCacheEntryID) => EngineCacheEntry;
|
|
3488
3478
|
/**
|
|
3489
|
-
* Load a
|
|
3479
|
+
* Load a EngineCacheEntrySet from its ID.
|
|
3490
3480
|
*/
|
|
3491
|
-
|
|
3481
|
+
loadEngineCacheEntrySetFromID: (id: EngineCacheEntrySetID) => EngineCacheEntrySet;
|
|
3492
3482
|
/**
|
|
3493
|
-
* Load a
|
|
3483
|
+
* Load a EngineCache from its ID.
|
|
3494
3484
|
*/
|
|
3495
|
-
|
|
3485
|
+
loadEngineCacheFromID: (id: EngineCacheID) => EngineCache;
|
|
3496
3486
|
/**
|
|
3497
|
-
* Load a
|
|
3487
|
+
* Load a Engine from its ID.
|
|
3498
3488
|
*/
|
|
3499
|
-
|
|
3489
|
+
loadEngineFromID: (id: EngineID) => Engine;
|
|
3500
3490
|
/**
|
|
3501
3491
|
* Load a EnumTypeDef from its ID.
|
|
3502
3492
|
*/
|