wordnik-api
Version:
Community API for https://wordnik.com with types
14 lines (13 loc) • 564 B
TypeScript
export default class AudioMetadata {
readonly commentCount: number;
readonly createdBy: string;
readonly createdAt: string;
readonly id: number;
readonly word: string;
readonly duration: number;
readonly audioType: string;
readonly attributionText: string;
readonly attributionUrl: string;
readonly fileUrl: string;
constructor(commentCount: number, createdBy: string, createdAt: string, id: number, word: string, duration: number, audioType: string, attributionText: string, attributionUrl: string, fileUrl: string);
}