comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
13 lines (11 loc) • 330 B
TypeScript
import { InjectionKey } from 'vue';
export type ElevatorItemInstance = {
name: string;
label: string;
uid: number;
};
export type ElevatorProvide = {
setItem: (instance: ElevatorItemInstance) => void;
removeItem: (uid: number) => void;
};
export declare const ELEVATOR_PROVIDE: InjectionKey<ElevatorProvide>;