9 lines
284 B
Plaintext
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>;
|
|
};
|