import { LEDDisplayInfo } from "./common.mjs"; import { Point } from "@novastar/native/common"; //#region src/getScreenLocation.d.ts type Location = { leftTop: Point; rightBottom: Point; cols: number; rows: number; }; declare const notEmptyXY: >>(y: T) => y is T & { X: Exclude; Y: Exclude; Width: Exclude; Height: Exclude; } extends infer T_1 ? { [P in keyof T_1]: T_1[P] } : never; declare function getScreenLocation(screen: LEDDisplayInfo): Location; //#endregion export { Location, getScreenLocation, notEmptyXY }; //# sourceMappingURL=getScreenLocation.d.mts.map