@hippocampus-web3/runebond-client
Version:
TypeScript client for RUNEBond API
33 lines (32 loc) • 744 B
TypeScript
export type MirrorFeedDto = {
feed: {
entry: Array<{
content: {
'#text': string;
'@_type': string;
};
author: {
uri: string;
name: string;
};
summary: string;
updated: string;
id: string;
link: {
'@_type': string;
'@_rel': string;
'@_href': string;
};
title: string;
}>;
link: {
'@_type': string;
'@_rel': string;
'@_href': string;
};
id: string;
updated: string;
subtitle?: string;
title: string;
};
};