yandex-music-client
Version:
``` npm i yandex-music-client ```
13 lines (12 loc) • 337 B
TypeScript
import type { Price } from './Price';
import type { Product } from './Product';
/**
* Предложения по покупке
*/
export type Settings = {
inAppProducts?: Array<Product>;
nativeProducts?: Array<Product>;
webPaymentUrl?: string;
webPaymentMonthProductPrice?: Price;
promoCodesEnabled?: boolean;
};