Link.d.ts 262 Bytes
Newer Older
Hanadi's avatar
Hanadi committed
1
2
3
4
5
6
7
8
9
10
import { RelationshipLink } from "./RelationshipLink";
import { Type } from "./Type";
export declare class Link {
    title?: string;
    href: string;
    rel: RelationshipLink;
    type?: Type;
    hreflang?: string;
    static fromJson(jsonObj: any): Link;
}