mirror of
https://git.disroot.org/wolfree/wolfree-dockerfile
synced 2025-01-22 19:00:24 +01:00
12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
/* SPDX-License-Identifier: AGPL-3.0-or-later */
|
|
|
|
export default EntrypointParameter;
|
|
|
|
type EntrypointParameter = Readonly<{
|
|
input: string;
|
|
i2d?: true;
|
|
podstate: Readonly<
|
|
["Step-by-step solution", "Step-by-step", "Show all steps", string?]
|
|
>;
|
|
}>;
|