For the complete documentation index, see llms.txt. This page is also available as Markdown.

Environment.tossAppVersion

Functional API getTossAppVersionYou can use the same function with this as well.

Feature description

It's the Toss app version. For example 5.206.0 It takes the form of. It's used to leave logs or to run a feature only on versions above a certain version.

It's a constant value, so you can read it directly without calling anything.

Type

Environment.tossAppVersion: string;

Params

None

Response

It's a string. For example '5.261.0'.

Example code

import { Environment } from "@apps-in-toss/web-framework";

console.log(Environment.tossAppVersion);

Was this helpful?