preact-spatial-navigation
Version:
A powerful Preact library for TV-style spatial navigation with LRUD algorithm, virtualized lists/grids, and smart TV support
17 lines • 614 B
TypeScript
/**
* Chrome 38 Compatibility Utilities
* Provides polyfills and workarounds for Chrome 38 specific issues
*/
export declare const chrome38Log: (_message: string, _data?: any) => void;
export declare const isChrome38: () => boolean;
export declare const getCompatibleCSSProperty: (property: string, value: string) => {
[key: string]: string;
};
export declare const getCompatibleScrollBehavior: () => {
WebkitOverflowScrolling: string;
overflowScrolling: string;
} | {
WebkitOverflowScrolling?: undefined;
overflowScrolling?: undefined;
};
//# sourceMappingURL=chrome38Compatibility.d.ts.map