Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions types/defines/flags.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,10 @@ export declare abstract class Flags {
context?: EvaluationContext
): Promise<EvaluationDetails<T>>;
}

export {
Flags as Flagship,
FlagEvaluationError as FlagshipEvaluationError,
EvaluationContext as FlagshipEvaluationContext,
EvaluationDetails as FlagshipEvaluationDetails,
};
23 changes: 17 additions & 6 deletions types/generated-snapshot/experimental/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3955,23 +3955,28 @@ interface ExecOutput {
readonly stdout: ArrayBuffer;
readonly stderr: ArrayBuffer;
readonly exitCode: number;
readonly __stdoutp: ArrayBuffer;
readonly __stderrp: ArrayBuffer;
}
interface ContainerExecOptions {
cwd?: string;
env?: Record<string, string>;
user?: string;
stdin?: ReadableStream | "pipe";
stdout?: "pipe" | "ignore";
stderr?: "pipe" | "ignore" | "combined";
__stdinp?: ReadableStream | "pipe";
__stdoutp?: "pipe" | "ignore";
__stderrp?: "pipe" | "ignore" | "combined";
}
interface ExecProcess {
readonly stdin: WritableStream | null;
readonly stdout: ReadableStream | null;
readonly stderr: ReadableStream | null;
get stdin(): WritableStream | undefined;
get stdout(): ReadableStream | undefined;
get stderr(): ReadableStream | undefined;
readonly pid: number;
readonly exitCode: Promise<number>;
output(): Promise<ExecOutput>;
kill(signal?: number): void;
readonly __stdinp: WritableStream | null;
readonly __stdoutp: ReadableStream | null;
readonly __stderrp: ReadableStream | null;
}
interface Container {
get running(): boolean;
Expand Down Expand Up @@ -12946,6 +12951,12 @@ declare abstract class Flags {
context?: EvaluationContext,
): Promise<EvaluationDetails<T>>;
}
export {
Flags as Flagship,
FlagEvaluationError as FlagshipEvaluationError,
EvaluationContext as FlagshipEvaluationContext,
EvaluationDetails as FlagshipEvaluationDetails,
};
/**
* Hello World binding to serve as an explanatory example. DO NOT USE
*/
Expand Down
23 changes: 17 additions & 6 deletions types/generated-snapshot/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3961,23 +3961,28 @@ export interface ExecOutput {
readonly stdout: ArrayBuffer;
readonly stderr: ArrayBuffer;
readonly exitCode: number;
readonly __stdoutp: ArrayBuffer;
readonly __stderrp: ArrayBuffer;
}
export interface ContainerExecOptions {
cwd?: string;
env?: Record<string, string>;
user?: string;
stdin?: ReadableStream | "pipe";
stdout?: "pipe" | "ignore";
stderr?: "pipe" | "ignore" | "combined";
__stdinp?: ReadableStream | "pipe";
__stdoutp?: "pipe" | "ignore";
__stderrp?: "pipe" | "ignore" | "combined";
}
export interface ExecProcess {
readonly stdin: WritableStream | null;
readonly stdout: ReadableStream | null;
readonly stderr: ReadableStream | null;
get stdin(): WritableStream | undefined;
get stdout(): ReadableStream | undefined;
get stderr(): ReadableStream | undefined;
readonly pid: number;
readonly exitCode: Promise<number>;
output(): Promise<ExecOutput>;
kill(signal?: number): void;
readonly __stdinp: WritableStream | null;
readonly __stdoutp: ReadableStream | null;
readonly __stderrp: ReadableStream | null;
}
export interface Container {
get running(): boolean;
Expand Down Expand Up @@ -12962,6 +12967,12 @@ export declare abstract class Flags {
context?: EvaluationContext,
): Promise<EvaluationDetails<T>>;
}
export {
Flags as Flagship,
FlagEvaluationError as FlagshipEvaluationError,
EvaluationContext as FlagshipEvaluationContext,
EvaluationDetails as FlagshipEvaluationDetails,
};
/**
* Hello World binding to serve as an explanatory example. DO NOT USE
*/
Expand Down
6 changes: 6 additions & 0 deletions types/generated-snapshot/latest/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12254,6 +12254,12 @@ declare abstract class Flags {
context?: EvaluationContext,
): Promise<EvaluationDetails<T>>;
}
export {
Flags as Flagship,
FlagEvaluationError as FlagshipEvaluationError,
EvaluationContext as FlagshipEvaluationContext,
EvaluationDetails as FlagshipEvaluationDetails,
};
/**
* Hello World binding to serve as an explanatory example. DO NOT USE
*/
Expand Down
6 changes: 6 additions & 0 deletions types/generated-snapshot/latest/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12270,6 +12270,12 @@ export declare abstract class Flags {
context?: EvaluationContext,
): Promise<EvaluationDetails<T>>;
}
export {
Flags as Flagship,
FlagEvaluationError as FlagshipEvaluationError,
EvaluationContext as FlagshipEvaluationContext,
EvaluationDetails as FlagshipEvaluationDetails,
};
/**
* Hello World binding to serve as an explanatory example. DO NOT USE
*/
Expand Down
Loading