@opensig/opendesign
Version:
9 lines (8 loc) • 343 B
TypeScript
import { InjectionKey, Ref, ComputedRef } from 'vue';
import { StepPropsT } from './types';
export interface StepInjectT {
props: StepPropsT;
stepItemHeadRefs: Ref<Array<HTMLDivElement>>;
stepItemDividerRects: ComputedRef<Array<Record<string, string> | undefined>>;
}
export declare const stepInjectKey: InjectionKey<StepInjectT>;