Files
sundynix-plant-mp/miniprogram_npm/tdesign-miniprogram/mixins/using-custom-navbar.d.ts
T
2026-02-04 14:02:31 +08:00

18 lines
533 B
TypeScript

/// <reference types="miniprogram-api-typings" />
/// <reference types="miniprogram-api-typings" />
declare const useCustomNavbarBehavior: WechatMiniprogram.Behavior.BehaviorIdentifier<{
distanceTop: number;
}, {
usingCustomNavbar: {
type: BooleanConstructor;
value: false;
};
customNavbarHeight: {
type: NumberConstructor;
value: number;
};
}, {
calculateCustomNavbarDistanceTop(): void;
}, WechatMiniprogram.Component.BehaviorOption>;
export default useCustomNavbarBehavior;