typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
81 lines (71 loc) • 1.77 kB
TypeScript
// Type definitions for Google Feed Apis
// Project: https://developers.google.com/feed/
// Definitions by: RodneyJT <https://github.com/RodneyJT>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 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;
}