UNPKG

win32-def

Version:
23 lines 738 B
import type * as T from '../../../lib/common.types.js'; import type { StructFactoryResult, StructInitType } from '../../../lib/types.js'; declare const init: StructInitType; export declare const LPRECT: "RECT*"; export declare const RECT_Name = "RECT"; export declare const RECT_Init: typeof init; /** * RECT structure * @link https://learn.microsoft.com/en-us/windows/win32/api/windef/ns-windef-RECT */ export declare function RECT_Factory(): StructFactoryResult<RECT_Type>; /** * RECT structure * @link https://learn.microsoft.com/en-us/windows/win32/api/windef/ns-windef-RECT */ export interface RECT_Type { left: T.LONG; top: T.LONG; right: T.LONG; bottom: T.LONG; } export {}; //# sourceMappingURL=RECT.d.ts.map