cloudapi
Version:
CLOUD API
16 lines (15 loc) • 328 B
TypeScript
interface resolutionType {
maxWidth: number;
maxHeight: number;
userAgent: string;
screenWidth: number;
screenHeight: number;
pixelRatio: number;
}
/**
* @public
* @function MaxResolution
* @returns {resolutionType}
*/
declare const MaxResolution: () => resolutionType;
export default MaxResolution;