• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Module Description
2<!--Kit: ArkUI-->
3<!--Subsystem: Window-->
4<!--Owner: @waterwin-->
5<!--Designer: @nyankomiya-->
6<!--Tester: @qinliwen0417-->
7<!--Adviser: @ge-yafang-->
8
9The Window module provides basic window management capabilities, such as creating and destroying the current window, setting properties for the current window, and managing and scheduling windows.
10
11This module provides the following common window-related functionalities:
12
13- [Window](arkts-apis-window-Window.md): window instance, which is the basic unit managed by the window manager.
14- [WindowStage](arkts-apis-window-WindowStage.md): window manager that manages windows.
15
16> **NOTE**
17>
18> The initial APIs of this module are supported since API version 6. Newly added APIs will be marked with a superscript to indicate their earliest API version.
19
20## Modules to Import
21
22```ts
23import { window } from '@kit.ArkUI';
24```
25