added missing templated attribute to Link

This commit is contained in:
Sebastian Sdorra
2019-10-25 16:38:02 +02:00
parent 3522daae21
commit 107ac1197f

View File

@@ -1,6 +1,7 @@
export type Link = {
href: string;
name?: string;
templated?: boolean;
};
type LinkValue = Link | Link[];