layui/.svn/pristine/2b/2b294488c54a9236771880f1e726aea61ea94acd.svn-base
2022-12-09 16:41:41 +08:00

9 lines
284 B
Plaintext

import { Ref, ComputedRef } from "vue";
export declare const LevelInjectionKey: unique symbol;
export declare function provideLevel(level: Ref<number> | number): void;
export default function useLevel(props?: {
provideNextLevel?: boolean;
}): {
level: ComputedRef<number>;
};