Fix StartOS 0.4 TypeScript packaging to match SDK API
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import { Effects } from '../Effects';
|
||||
import { PackageId } from '../osBindings';
|
||||
import { Watchable } from './Watchable';
|
||||
export declare class GetContainerIp extends Watchable<string> {
|
||||
readonly opts: {
|
||||
packageId?: PackageId;
|
||||
};
|
||||
protected readonly label = "GetContainerIp";
|
||||
constructor(effects: Effects, opts?: {
|
||||
packageId?: PackageId;
|
||||
});
|
||||
protected fetch(callback?: () => void): Promise<string>;
|
||||
}
|
||||
Reference in New Issue
Block a user