6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
import type { MountTarget } from './MountTarget';
|
|
export type MountParams = {
|
|
location: string;
|
|
target: MountTarget;
|
|
};
|