ff-webpage/types/component/sharedLink.ts

6 lines
122 B
TypeScript
Raw Permalink Normal View History

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