UNPKG

@exadel/esl

Version:

Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components

17 lines (16 loc) 435 B
/** * DPR preprocessor. Used to replace DPR shortcuts. * @author Alexey Stsefanovich (ala'n) * * @implements IMediaQueryPreprocessor statically */ export declare class ESLScreenDPR { protected static readonly VALUE_REGEXP: RegExp; static toDPI(dpr: number): string; static process(match: string): string | undefined; } declare global { export interface ESLLibrary { ScreenDPR: typeof ESLScreenDPR; } }