UNPKG

ember-container-query

Version:

Make container queries that harness the power of Ember

14 lines (13 loc) 381 B
import type { Metadata } from '../modifiers/container-query.ts'; interface HeightHelperSignature { Args: { Named: { max?: number; min?: number; }; Positional: []; }; Return: Metadata; } declare const HeightHelper: import("@ember/component/helper").FunctionBasedHelper<HeightHelperSignature>; export default HeightHelper;