UNPKG

408 BTypeScriptView Raw
1export declare class AxisResolverFactory {
2 constructor();
3 create(vertical?: boolean): AxisResolver;
4}
5export declare class AxisResolver {
6 private vertical;
7 constructor(vertical?: boolean);
8 clientHeightKey(): string;
9 offsetHeightKey(): string;
10 scrollHeightKey(): string;
11 pageYOffsetKey(): string;
12 offsetTopKey(): string;
13 scrollTopKey(): string;
14 topKey(): string;
15}