@tabby-gang/windows-blurbehind
Version:
JavaScript bindings for DwmEnableBlurBehindWindow and DwmExtendFrameIntoClientArea
17 lines (16 loc) • 585 B
TypeScript
/// <reference types="node" />
/**
* Enables or disable blur behind a window
* @param window The target window's native handle.
* @param enable Whether to enable or disable blur behind.
*/
export declare function DwmEnableBlurBehindWindow(window: Buffer, enable: boolean): any;
/**
* Extends the window frame in the client area.
* @param window The target window's native handle.
* @param left
* @param right
* @param top
* @param bottom
*/
export declare function DwmExtendFrameIntoClientArea(window: Buffer, left: number, right: number, top: number, bottom: number): any;