ff-webpage/types/component/sharedLink.ts

5 lines
122 B
TypeScript

export default interface SharedLink {
text: string;
URL: string;
target: "_blank" | "_self" | "_parent" | "_top";
}