taro-hooks
Version:
为 Taro 而设计的 Hooks Library
8 lines (7 loc) • 323 B
TypeScript
import type { InnerAudioContext } from '@tarojs/taro';
import type { PromiseAction } from '../type';
import type { ContextField } from './';
export type Option = Partial<ContextField> & Taro.setInnerAudioOption.Option & {
context?: InnerAudioContext;
};
export declare const setInnerAudioOption: PromiseAction<Option>;