14 lines
439 B
TypeScript
14 lines
439 B
TypeScript
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>;
|
|
}
|