crunchyroll-js-api
Version: 
JavaScript API consumer for crunchyroll
76 lines (75 loc) • 1.68 kB
TypeScript
/**
 * Returning user-agent
 * @return {String}
 */
export function getUserAgent(): string;
/**
 * Return content types
 * @returns {Array<String>}
 */
export function getContentTypes(): Array<string>;
/**
 * Return possible values for series rating.
 * @returns {Array<String>}
 */
export function getRatingContentTypes(): Array<string>;
/**
 * Return possible values for episodes rating.
 * @returns {Array<String>}
 */
export function getRatingEpisodeTypes(): Array<string>;
/**
 * @returns {String}
 */
export function getClientId(): string;
/**
 * @returns {String}
 */
export function getClientSecret(): string;
/**
 * @return {String}
 */
export function getBaseUrl(): string;
/**
 * @return {String}
 */
export function getDrmUrl(): string;
/**
 * @return {String}
 */
export function getPlUrl(): string;
/**
 * @return {String}
 */
export function getStaticUrl(): string;
/**
 * @return {String}
 */
export function getAccountingId(): string;
/**
 * @return {String}
 */
export function getLicenseUrl(): string;
export function getMainUrl(): string;
/**
 * @return {String}
 */
export function getSecurePlayWidevineLicenceUrl(): string;
declare namespace _default {
    export { getUserAgent };
    export { getContentTypes };
    export { getRatingContentTypes };
    export { getRatingEpisodeTypes };
    export { getClientId };
    export { getClientSecret };
    export { getBaseUrl };
    export { getDrmUrl };
    export { getPlUrl };
    export { getAccountingId };
    export { getStaticUrl };
    export { getLicenseUrl };
    export { getSecurePlayWidevineLicenceUrl };
    export { getMainUrl };
    export let sortByValues: string[];
}
export default _default;