8 lines
288 B
TypeScript
8 lines
288 B
TypeScript
import { ConfigPlugin } from 'expo/config-plugins';
|
|
type Props = {
|
|
/** Disable linking the included libdav1d decoder. Useful when another dependency already provides it. */
|
|
disableLibdav1d?: boolean;
|
|
};
|
|
declare const _default: ConfigPlugin<void | Props>;
|
|
export default _default;
|