mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
81 lines
1.7 KiB
TypeScript
81 lines
1.7 KiB
TypeScript
// Type definitions for Google Feed Apis
|
|
// Project: https://developers.google.com/feed/
|
|
// Definitions by: RodneyJT <https://github.com/RodneyJT>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace google.feeds {
|
|
export class Feed {
|
|
constructor();
|
|
constructor(url: string);
|
|
findFeeds(query?: string, callback?: (result: findResult) => void ): void;
|
|
getElementsByTagNameNS(node: string, ns: string, localName: string): any[];
|
|
includeHistoricalEntries(): void;
|
|
load(callback?: (result: feedResult) => void ): void;
|
|
setNumEntries(num: number): void;
|
|
setResultFormat(format: string): void;
|
|
}
|
|
}
|
|
|
|
interface feedResult {
|
|
error?: feedError;
|
|
xmlDocument?: string;
|
|
feed: feedJSON;
|
|
}
|
|
|
|
interface findResult {
|
|
error?: feedError;
|
|
xmlDocument?: string;
|
|
findEntries: findEntry[];
|
|
}
|
|
|
|
interface feedError {
|
|
code: string;
|
|
message: string;
|
|
}
|
|
|
|
interface feedJSON {
|
|
feedURL: string;
|
|
link: string;
|
|
author: string;
|
|
description: string;
|
|
entries: feedEntry[];
|
|
}
|
|
|
|
interface feedEntry {
|
|
mediaGroup: MediaGroup[];
|
|
title: string;
|
|
link: string;
|
|
content: string;
|
|
contentSnippet: string;
|
|
publishedDate: string;
|
|
categories: string[];
|
|
}
|
|
|
|
interface findEntry {
|
|
title: string;
|
|
link: string;
|
|
contentSnippet: string;
|
|
url: string;
|
|
}
|
|
|
|
interface MediaGroup {
|
|
content: MediaContent[];
|
|
}
|
|
|
|
interface MediaContent {
|
|
url: string;
|
|
fileSize: number;
|
|
type: string;
|
|
medium: string;
|
|
isDefault: boolean;
|
|
expression: string;
|
|
bitrate: number;
|
|
framerate: number;
|
|
samplingrate: number;
|
|
channels: string;
|
|
duration: number;
|
|
height: number;
|
|
width: number;
|
|
lang: string;
|
|
}
|