7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import type { SmartDest } from "@/utils/smart-dest";
|
|
|
|
export interface SmartLinkProps {
|
|
to: SmartDest;
|
|
newTab?: boolean;
|
|
covert?: boolean;
|
|
}
|